SQL Update of MD5 Passwords
this will work after you add db connection strings to your php file:
<?php$password = 'tony123';$passwordmd5 = md5($password);$q = mysql_query("UPDATE `Users` SET password = '$passwordmd5' WHERE user_id = 55");?>
php/mysql connection ref: http://php.net/manual/en/function.mysql-connect.php