Quote:
Originally Posted by Nakor
and yep $row['password'] is the password field from the database.
|
The password stored in teh database already is a md5 hash. You can not calculate back teh password from it if this is what you're trying.
Like Kirby said, you can with that formula calculate the hash of a userinputed password to compaire to the (hashed) password stored in the database, to see if it matches.