Ok, found yo issue...
HTML Code:
// Part 1
$vbulletin->input->clean_array_gpc('p', array(
'radioanswer3other' => TYPE_STR,
'answer1' => TYPE_STR,
'answer2' => TYPE_STR,
'answer3' => TYPE_STR,
'answer4' => TYPE_STR,
'answer5' => TYPE_STR,
'answer6' => TYPE_STR,
'answer7' => TYPE_STR,
'answer8' => TYPE_STR,
'dropdownanswer1' => TYPE_STR,
'longanswer1' => TYPE_STR <<<..... comma missing here
'longanswer2' => TYPE_STR <<<.... comma missing here
'longanswer3' => TYPE_STR
));
COMMA's missing...
Add comma's at the end and as Milk Carton was saying get rid of the {{{ // }}} and that will rectify yo issues...
Good Luck