Is it possible with PHP, or even HTML for that matter, to mask the input of a password in a form? I want it to display "*" or dots as the user types in their password. Or do I have to use Java for this?
Thanks, Jeff
<input type="password" name="pw" />
by specifying the password type, it will show *'s instead of the characters.
drew010 wrote:<input type="password" name="pw" /> by specifying the password type, it will show *'s instead of the characters.
I was not aware of that. Thanks very much for the help.
Jeff