This is what paypal says:
Note: Passwords sent through IPN will be hashed. The hash is generated by the UNIX crypt() function which is based on the DES hashing algorithm. For more information, type "man crypt" on any UNIX terminal.
This is what I have for my insert:
,('$password'),
This is what I have for my select :
AND password = (password('" . $_POST['password']. "'));";
I have also changed my password field to a BLOB, since that is what the mySQL manual says to do for passwords.
I tried changing password to ENCODE, like this,
AND password = (ENCODE('" . $_POST['password']. "'));";
but it threw an error. I'm new to this encryption stuff