Quote:
Originally Posted by SirAdrian
PHP Code:
$db->query_write("
UPDATE " . TABLE_PREFIX . "user
SET password = md5(concat(md5('alphabet soup'), salt))
WHERE userid = 777
");
... where 777 is the userid of the account you want to modify, and 'alphabet soup' is the new password.
|
This works great! Thanks.
How would I check for errors? the query_write seems to return a 1 with a valid or an invalid userid.
Thanks again!
Austin