Hey,
Here is my tiny probleme, i've got a database table that contains users' informations as name, firstname, date of birth and password. I don't want the password to be stored clear in the database so i used the "password" type in my password row in mysql.
But now when i try to check password with that simple SQL sentence :
SELECT users.name FROM users WHERE ((users.name='$name')and(users.password='$password'))
This is not working of course cos my $password variable contains the user's password clear so it doesn't match with the encrypted password in the database 🙁
Any help will be appriciate.
Thx