Hi
I have a php script, and a mysql databse.
I will be moving the dbase to a new script.
Is there a sql command to md5 encrypt all the records in one column(password), once it has been uploaded.
MD5 in mysql
Sure. Simply use the MD5() function in MySQL like so:
UPDATE `table` SET `password` = MD5(`password`)