| password login encrypt
|
tr8er8

msg:3809263 | 5:29 am on Dec 17, 2008 (gmt 0) | how would you retrieve a password from the database to use it to login if you put it in as like: $hash = md5($salt1.$password.$salt2); then like insert it in, i need to like have it so if the $_POST['password'] == $hashedPassword, but im not sure how to like do that.
|
eelixduppy

msg:3809269 | 5:35 am on Dec 17, 2008 (gmt 0) | You have to compare the hashes, not the password text itself. if(md5($salt1.$_POST['password'].$salt2) == $pass_from_database) #you're good
|
tr8er8

msg:3809276 | 5:58 am on Dec 17, 2008 (gmt 0) | thanks man i got it :D
|
|
|