This will make it show up in a standard error message from vbulletin.
Put it after the submit button action.
Code:
if ($formanswer == '')
{
$errormessage="you need to answer this question since it's required";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
exit();
}
This will make it show up in a standard error message from vbulletin.
Put it after the submit button action.
Code:
if ($formanswer == '')
{
$errormessage="you need to answer this question since it's required";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
exit();
}