how can odecrypt password string in php which is crypted?
Posted
by Srikanth Naidu
on Stack Overflow
See other posts from Stack Overflow
or by Srikanth Naidu
Published on 2010-03-26T15:00:20Z
Indexed on
2010/03/26
15:03 UTC
Read the original article
Hit count: 322
php
how can i decrypt password string in php which is crypt
$salt = substr($_POST['password'], 0, 2);
$password = crypt($_POST['password'], $salt);
i need to send the password in email "forgetpassword"
© Stack Overflow or respective owner