Well, at first I inserted it manually from the phpmyadmin, and select the md5. Realizing that didn't work, and from reading other sources, I created an insert query, also using the md5.
$password = md5("test2");
$query = "INSERT INTO client_users (id, username, password) VALUES(NULL, 'test2', '$password')";
mysql_query($query) or die(mysql_error());
mysql_close();
trying to get that to work aswell...unsuccessful
Maybe I am doing something wrong, i dunno its basic login with md5 encryption, so someone can't go in the database and find out everyones password. Maybe I am goign about this the wrong way...
Thanks for the help in advance..
Steve