I have a dilema. I am creating a site for my community with User Authentication. Now the passwords get saved into the database using mysql's password function. here is an example of my code
Code: Select all
INSERT INTO TABLE_USER (username, password) VALUES (%s, password(%s))Can anyone give me a hint or a workaround, besides using MD5 and so on.