forgetting something Bug?
find:
if(!valid_email($_POST['email']))
{
die("Sorry, the email is invalid.
>[url='register.php']Back[/url]");
}
Add below:
// Change the values in array to the values of the drop down in the form
if( !in_array($_POST['race'], array('raceone', 'racetwo', 'racethree')) ) {
echo '
Please select a predefined race.
>[url="register.php"]Back[/url]
';
}
NOTE: may wanna look at gender also...
Hey Strats nice to see you on MWG again :)