After the user make registration,
the userid and password will be hashed and
store in database using php hash function.
So, when the user forgot his/her password,
how i let them know their password(since
the password was hashed) ?
For example :
User Enter Password : mickey
Password that hashed and store in database:
xmdfj12jojlgh9
if i retrieve this password from database and send to the user who forgot password then in his mailbox will show this :
xmdfj12jojlgh9 instead of mickey.
Is it possible return mickey to him ?
thanks for answering.