IT Placement Papers Programming PHP
This category contains PHP Interview Questions and Answers |
How can we encrypt the username and password using PHP?
|
|
|
|
|
You can use the MySQL PASSWORD() function to encrypt username and password. For example,
INSERT into user (password, ...) VALUES (PASSWORD($password”)), ...);
Only registered users can write comments. Please login or register.
|