Hello,
This is probably a simple question, but it's one I can't find the answer to. What is the difference(s) if any between these two sql password change queries?
$config['password_query'] = "update accounts set password=CONCAT('{SHA512-CRYPT}', ENCRYPT (%p, CONCAT('$6$', SUBSTRING(SHA(RAND()), -16)))) WHERE username=%l";
$config['password_query'] = "update accounts set password=CONCAT('{SHA512-CRYPT}', ENCRYPT (%p, CONCAT('$6$', SUBSTRING(SHA(RAND()), -16)))) WHERE username=%u";
Thanks. Dave.