Quote:
Originally Posted by icemanic
im totally clueless trying to customize my own form, can anyone help me via PM ?????
im trying to add several $normalquestion .....but do i just add $normalquestion2
it does not show up, etc
HELP!
|
Icemanic its possible that you forgot something in one of your forms or your plugin code isn't matching.
Check form names
Check form answer area
Check main form and verify that its got the correct html that will show all boxes or message areas.
HTML Code:
// Part 1
$vbulletin->input->clean_array_gpc('p', array(
'answer1' => TYPE_STR,
'answer2' => TYPE_STR,
'answer3' => TYPE_STR,
'answer4' => TYPE_STR,
'answer5' => TYPE_STR,
'radioanswer1' => TYPE_STR,
'radioanswer1other' => TYPE_STR,
'$normalanswer1' => TYPE_STR,
'$normalanswer2' => TYPE_STR,
));
// Part 2
$answer1 = $vbulletin->GPC['answer1'];
$answer2 = $vbulletin->GPC['answer2'];
$answer3 = $vbulletin->GPC['answer3'];
$answer4 = $vbulletin->GPC['answer4'];
$answer5 = $vbulletin->GPC['answer5'];
$radioanswer1 = $vbulletin->GPC['radioanswer1'];
$radioanswer1other = $vbulletin->GPC['radioanswer1other'];
$normalanswer1 = $vbulletin->GPC['normalanswer1'];
$normalanswer2 = $vbulletin->GPC['normalanswer2'];
Next check your forms templates 2 verify that all is matching and is placed correctly.
Good Luck!