Hello,
My application requires the user to re-authenticate their username and password. I imagine the query looks something like:
SELECT * FROM `user` WHERE `password` = _______?
Since the password in the database is encrypted, how would the rest of the query look like?
My application requires the user to re-authenticate their username and password. I imagine the query looks something like:
SELECT * FROM `user` WHERE `password` = _______?
Since the password in the database is encrypted, how would the rest of the query look like?
Comment