How to create the password input
How can I make a password input with characters lik开发者_运维技巧e *****
?
<input type="password" ... />
This is standard HTML, nothing to do with PHP:
<input type="password" />
It depends on how you are producing your user interface.
If it is using HTML, then PHP is irrelevant, just use a password type input.
精彩评论