[PHP] Re: Converting a large number of passwords to MD5 at once.
Hello Vernon, If database is MySQL you can use MySQL function MD5: UPDATE TableName SET password = MD5(password) If database is not MySQL: write PHP script and use PHP function md5; Best regards, Nenad Djordjevic mailto:[EMAIL PROTECTED]
[PHP] Re: Converting a large number of passwords to MD5 at once.
Simple! Write a script to automate the process! Lord Loh -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php