This is multiple-choices based radio button.
I have 5 questions and 4 multiple-choices for user to select.
5 questions are looping from my database and each question has 4 choices again looped from database.
For example
// looping 5 Questions
for ($i = 0; $i < $Questions; $i++)
{
// looping 4 Multiple-Choices
for ($j = 0; $j < $Choices; $j++)
{
echo "<label><input type=\"radio\" name=\"".$questionNumber."\" value=\"".$choicesValue[$j]."\"/>".$choicesText[$j]."</label>";
}
}
From the above, how do I check which button has been selected and store the value into SESSION or POST something.
I want to bring over my selected answer to another page and display.
I understand that I need to bring the name="$questionNumber" and selected-value="$choicesValue[$j]"
But, I do not know how to process it. Which method more easier for me to bring over my selected valueS to another page? SESSION or POST method?