tags:

views:

112

answers:

3

Now I'm at security, how can I make the password like this-->> * in php?Please help. Is it on the textbox.

+4  A: 
<input type="password" ... />
artemb
+2  A: 

This is standard HTML, nothing to do with PHP:

<input type="password" />
nickf
+1  A: 

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.

David Dorward