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?

link|improve this question

42% accept rate
feedback

3 Answers

up vote 1 down vote accepted

It depends:

  • If this is a multistep form then use sessions to retrieve answers later
  • If you process the answers immediately, i'll stick with $_POST

(within your PHP foreach loop):

<input type="radio" name="q[<?php echo $questionNumber;?>]" value="<?php echo $choicesValue[$j];?>" />`

when user clicks submit (forms' action):

$data = $_POST['q']; //this will hold all of your answers indexed like in your db
link|improve this answer
Sorry, I don't catch up. I am doing 5 questions, after select 5 answers, I will press a Submit button and see my result on another page. I need to know step by step on how to STORE my selected-values and displaying them on next page. Problem is my VALUE are dynamically assign from looping, same to my NAME of the radio button. How to get the CHECKED radio button and send them to next page? – hexahow Mar 24 '11 at 6:07
feedback

try somethine like name=\"radio_".$questionNumber."\" i.e. putting radio_ prefix before name of radio button.

UPDATED::

And for prcessing,

foreach($_POST as $post => $value)
{
    if(ereg('^radio_', $post))
    {
        $question[] = array(str_replace('radio_',' ',$post), $value);
    }

}

$question will contain array of question no and answer. Thought i beleive that you can do much better.

link|improve this answer
feedback

Put this code on simple php file and run. I think this may help you. I am running question loop 5 time and option loop 4 time static. you can make this dynamic.

<?php
echo "<pre>";
print_r($_POST);
?>

<form method="post">
<?php
// looping 5 Questions
for ($i = 1; $i <= 5; $i++)
{
    echo "Question ". $i."<br>";
    // looping 4 Multiple-Choices
    for ($j = 1; $j <= 4; $j++)
    {
        echo "<label><input type=\"radio\" name=\"".$i."\" value=\"".$j."\"/>Choice ". $j ."</label>";
        echo "<br>";
    }
    echo "<br>";
}
?>
<br>
<input type="submit" name="submit" value="Submit">
</form>

Output:

If you select

question 1 - 1st choice
question 2 - 2nd choice
question 3 - 3rd choice
question 4 - 4th choice
question 5 - 1st choice

then output will be

Array
(
    [1] => 1
    [2] => 2
    [3] => 3
    [4] => 4
    [5] => 1
    [submit] => Submit
)

Here you can easily get selected radio button value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.