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.

    Sure. Simply use the MD5() function in MySQL like so:

    UPDATE `table` SET `password` = MD5(`password`)
      Write a Reply...