How can we encrypt the username and password using PHP?
April 5th, 2009Ans1: You can encrypt a password with the following MySql>SET PASSWORD=PASSWORD(”Password”);
Ans2: You can use the MYSQL PASSWORD() function to encrypt username and password. For Example Insert into user(password, ……..) values (PASSWORD(”$password”,………));