if (empty($_POST[PASSSWORD])) { $GERROR="TRUE";}If that's a direct copy/paste from your actual code, there is an extra S in PASSWORD. Also, you should enclose the array key in quotes: if (empty($_POST['PASSWORD'])) { $GERROR='TRUE'; }
It is official I am a DOPE! Thank you, yes, I did not see the SSS in an hour of looking!
Why enclose in quotes? I have never done this! -Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php