Hi There,
I'm currently creating a form and inserting the details into a database, the problem i came across is when the php checks and inserts the data i made the password md5
$password = md5($_POST['password']);
However if the user wants to request his password via email how will this be achieved?
Will the user basically get the hashed version and use that to login or is there a method of reverting the password back to the text he initially inputted ?