Figured it out. You changed the questions to fit what you need, but you didn't edit the template to accomodate that. In addition, you also need to change the variables to reflect the questions you are asking.
You'll need to change all of your $normalquestion1 variables to $normalquestion1, $normalquestion2, etc. because if you don't, you'll just overwrite what's on the variable and only the last item (Post code) will show up. Go through all of your questions and replace them accordingly.
After that, go to your variables and replace the variables with what I've put below:
PHP Code:
// Part 1
$vbulletin->input->clean_array_gpc('p', array(
'normalanswer1' => TYPE_STR,
'normalanswer2' => TYPE_STR,
'normalanswer3' => TYPE_STR,
'normalanswer4' => TYPE_STR,
'normalanswer5' => TYPE_STR,
'normalanswer6' => TYPE_STR,
'normalanswer7' => TYPE_STR,
));
// Part 2
$normalanswer1 = $vbulletin->GPC['normalanswer1'];
$normalanswer2 = $vbulletin->GPC['normalanswer2'];
$normalanswer3 = $vbulletin->GPC['normalanswer3'];
$normalanswer4 = $vbulletin->GPC['normalanswer4'];
$normalanswer5 = $vbulletin->GPC['normalanswer5'];
$normalanswer6 = $vbulletin->GPC['normalanswer6'];
$normalanswer7 = $vbulletin->GPC['normalanswer7'];
After you've done that, edit the templates at the top of the file. Edit the form to display all of your normal answers, then edit the formanswers template to display all of your answers.