Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Signup Form Questions Re: Signup Form Questions

#83878
Billy
Participant

to check if it’s blank, just do:


$email = mysql_real_escape_string($_POST);

if ($email) {
*Rest of code*
} else {
echo 'Please fill all fields';
}
?>