例如
<input type="radio" name="radio[Q1]" value="Op1">
<input type="radio" name="radio[Q1]" value="Op2">
<input type="radio" name="radio[Q2]" value="Op1">
<input type="radio" name="radio[Q2]" value="Op2">
foreach
环
foreach($_POST['radio'] as $question => $answer) {
// $question will be "Q1", "Q2", etc
// $answer will be the chosen radio button value
}
"radio"
<form>
应该有
method="post"