Question - How can we encrypt the username and password using PHP?
Answer -
1) - You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD("Password");
2) - You can use the MySQL PASSWORD() function to encrypt username and password. For example,
INSERT into user (password, ...) VALUES (PASSWORD($password”)), ...);