I have a radio box that has a php variable name in its radio name. How can I pass its value to another PHP file and it will become like this, for example:
<input type='radio' name='choice_a' value='$answer'>
It will become a $_POST['choice_a'] after I pass it in another page. But if its like this:
<input type='radio' name='$quiz_no' value='$answer'>
How can its name be passed in another PHP file for checking? By the way, the $quiz_no and $answer is stored in my database.