Hi,
I'm trying to check for emty required form fields and then display and error if any are found.
if ($email == NULL && $PASSWORD == NULL){ echo "$input_error";}
the above will only show the error if both password and email are not inputed how do I do "if e-mail OR PASSWORD".
Thanks