I would like to transfer data from an imported users and passwords table to my main users and passwords table.
The imported table shows the password field as plain text. I want to transfer this data into the main table and encode the password as an MD5 hash at the same time. Is there a way to do this?
Other fields / data I need to transfer at the same time are 'username', 'name', 'address', 'city', 'state'. These I want to keep as plain text and not MD5.
The imported table shows the password field as plain text. I want to transfer this data into the main table and encode the password as an MD5 hash at the same time. Is there a way to do this?
Other fields / data I need to transfer at the same time are 'username', 'name', 'address', 'city', 'state'. These I want to keep as plain text and not MD5.
Comment