Quote:
Originally Posted by paul41598
in a text box, value="$testme"
and the text box is actually under one of the radio buttons in the threadadmin manage. see below
|
The variable will be in the $_POST array, but you would use vBulletin's built in sanitizing array:
PHP Code:
$vbulletin->input->clean_gpc('p', 'testme', TYPE_NOHTML));
The new variable would be:
PHP Code:
$vbulletin->GPC['testme']