Jason Todd Slack-Moehrle wrote:
> Hi All,
> 
> I have an input field with type="password".
> 
> I am trying to do some error checking to see if the user puts a value in
> after they submit the form (i.e not left it blank)
> 
> Here is what I have:
> 
> on form:
> Password: <input id="PASSWORD" name="PASSWORD" type="password" size="15">
> 
> In PHP error checking:
> 
> if (empty($_POST[PASSSWORD]))
> { $GERROR="TRUE";}
> 
> even though I am putting characters in the field before I submit I am
> always getting TRUE returned.
> 
> This same tactic works for other fields I have that I need to make sure
> they put values in, just I have never done this before with a password
> field.
> 
> What am I doing wrong? I just want to make sure they put something there!
> 
> -Jason

Could it be that your $_POST[PASSSWORD] has three "S"s in it and your
form field name="PASSWORD" only has 2?

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to