Arrg, still NULL.
This is what I have...
PHP Code:
// ...
print_form_header('mypage_admin', 'updatemanager');
print_table_header($vbphrase[my_manager]);
print_input_row('File Uploads Location:', 'uploads_location', 'testdata', 'false', '50', '260');
$vbulletin->input->clean_array_gpc('p', array(
'uploads_location' => TYPE_STR
));
print_submit_row($vbphrase['save'], $vbphrase['reset']);
print_table_footer(3, '', '', 0);
// ...
if ($_REQUEST['do'] == 'updatemanager')
{
// VALIDATE ENTERED DATA
var_dump($vbulletin->GPC['uploads_location']);
die();
if (!$vbulletin->GPC['uploads_location'])
{
print_stop_message('fieldmissing');
}
}
// ...