Forum Moderators: coopster
http://www.example.com/example.php?user=example&password=example
don warry the password will be encrypted wid the help of md5()
But I want to ask that is there any way so that i can send something unique in the URL string so that there are less possibilities of hacking. and which keeps on changing everytime?
// This is the password from the database
$password = "blah";
// This is your salt
$salt = "kf934mqwf80";
// Now here is the better encrypted password
$pass = md5($salt . $password);
Now you would use the same $salt to lookup the password in the database - md5($salt . $_POST['password']);