[b]I Encrypted my Password
$model->password=hash(‘md5’, $salt.$_POST[‘my_tbl_user’][‘password’]);
…
…
I want Decrypt it ?
?
?
?
?
??[/b]
[b]I Encrypted my Password
$model->password=hash(‘md5’, $salt.$_POST[‘my_tbl_user’][‘password’]);
…
…
I want Decrypt it ?
?
?
?
?
??[/b]
You cannot !!!
You have not encrypted the password… you have generated a hash value from your password…
With md5 it is not possible to get back the plain password cause it is a one way hash method.
[size=“5”]THank you ALL [/size]