How do I unencode a password that was encoded using:
$newpassword = md5($password);
Thanks in advance!😃
cant uncrypt md5, its a one way encryption.. why not just verify against you already encrypted variable?
$var = "wwefdFDFkJDS0jdfldgfdfdsdf"; $new_var = md5("test"); if ($var == $new_var) { echo "Same Value"; } else { echo "Value doesnt match"; }
dang.... I was returning the encoded password from a cookie on the users computer to put in the password field on a page... Now I'm going to have to check and see if the cookie exists or not....