[eluser]sunset11[/eluser]
Hi Bianca
Not sure this is what you need.
You just have to encrypt the username you receive with the native php function md5($string) and then compare this value with your field.
$username_md5 = md5($username)
and then
"SELECT * FROM TABLE WHERE username_field_name = '$username_md5' AND remember_me = 1"