I have been reading php manual and i need to encrypt passwords for users on my site. The thing is i
do
$password =md5($password)
and store it in the database
what about when they want to signin.
they enter their password but it won't be the same as the one in the db because i have md5ied it.
How do i undo the md5 so they can log in