$c = sizeof($question);
for($i =0;$i<$c;++$i){
echo $question[$i].'<br>';
$cc = sizeof($answers[$i]);
for($ii = 1; $ii < $cc; ++$ii){
echo $answers[$i][$ii].'<br>';;
}
}
$c = sizeof($question);
for ($i = 0; $i < $c; ++$i) {
echo $question[$i];
$cc = sizeof($answers[$i]);
for ($ii = 0; $ii < $cc; ++$ii) {
echo $answers[$i][$ii];
}
}
<label>Вопрос №1</label>
<input type="text" name="questions[]">
<label>1 ответ на 1 вопрос</label>
<input type="text" name="answers[1][]">
<label>2 ответ на 1 вопрос</label>
<input type="text" name="answers[1][]">
<label>3 ответ на 1 вопрос</label>
<input type="text" name="answers[1][]">
<label>Вопрос №2</label>
<input type="text" name="questions[]">
<label>1 ответ на 1 вопрос</label>
<input type="text" name="answers[2][]">
<label>2 ответ на 1 вопрос</label>
<input type="text" name="answers[2][]">
$c = sizeof($question);
for($i =0;$i<$c;++$i;){
//перебор вопросов
$cc = sizeof($answers[$i]);
for($i =0;$i<$cc;++$i;){
//перебор ответов
}
}