Hi,
When I use these two together it works , was that the instruction ? Separately they don't work.
Quote:
Originally Posted by bananalive
[HTML]
PHP Code:
$hiddenfield1 = $vbulletin->input->clean_gpc('p', 'hiddenfield1', TYPE_NOHTML);
$formoutput = str_replace('{param}', "$hiddenfield1", $formoutput);
The alternative would be to use this code: (it justs adds the field like another question at the end of the form output)
PHP Code:
$formoutput .= $form[preq] . "Username" . $form[pstq];
$formoutput .= $form['prea'] . $hiddenfield1 . $form[psta];
|
Thanks