02-15-2008, 01:19 AM
|
#23 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Posts: 87
Thanks: 49
|
Thanks a lot Sock, I really appreciate your help!
I have been checking the passwords, and they are indeed being stored like you posted. As far as I'm aware, I've done it correct.
I'm pulling the data from the password field and encrypting it:
PHP Code:
$md5reg_password = mysql_real_escape_string($_POST['reg_password']);
I then added it to the INSERT query:
PHP Code:
user_pass = "'.md5($reg_password).'",
I'll have an in depth look over the pseudocode tomorrow. Thanks again 
|
|
|
|