i have created a quiz format like QCM examen first i used radio button only and the problem of this radio button must have a name with the id of the question and the value must be the id of the answer example : the php code (using while)
<input type="radio" name="question_['.$question_id.']" value="'.$ans_id.'">
output
<input type="radio" name="question_1" value="5">
<input type="radio" name="question_1" value="6">
<input type="radio" name="question_2" value="10">
<input type="radio" name="question_2" value="11">
so what i want is posting this form i already used the var_dump
for this but i've get an array format so i don't how to foreach
it
so please can someone help me ?