Judicious application of array key names can greatly increase the efficiency and simplicity of your code. Consider this simplified version of the questions/options form code
<form method='post' >
<?php
for ($qno=1; $qno<=2; $qno++) {
echo <<<HTML
<label>
Sub Question $qno <span class="req">*</span>
<textarea cols="46" rows="3" name="Q[$qno][question]" placeholder="Enter Sub question here.."></textarea>
</label>
<ul>
HTML;
for ($opt='A'; $opt<='D'; $opt++) {
echo <<<HTML
<li>Choice $qno$opt (text)
<input type='text' name="Q[$qno][opts][$opt]" placeholder="Enter Choice A here.." size='40'>
</li><br><br>\n
HTML;
}
echo "</ul><hr>\n";
}
?>
<input type='submit'>
</form>
producing...
When the form is submitted, the POST array is like this...
Array
(
[Q] => Array
(
[1] => Array
(
[question] => aaaaaaaaaaaaaaaaaaaaaaaaaaa
[opts] => Array
(
[A] => aa
[B] => bb
[C] => cc
[D] => dd
)
)
[2] => Array
(
[question] => bbbbbbbbbbbbbbbbbbbbbbbbb
[opts] => Array
(
[A] => ww
[B] => xx
[C] => yy
[D] => zz
)
)
)
)
Now you can easily iterate through the array to write the questions/options to you database
foreach ( $_POST['Q'] as $qno => $qdata ) {
write $qno and $qdata['question'] to question table
save last insert id as $qid
foreach ( $qdata['opts'] as $ono => $choice ) {
write $qid, $ono, $choice to choice table
}
}
Job Done.