Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

PHP adding a String To Every Entry in a Specified Column

There may be time when you want to add a number or letter to the beginning or end of every entry in a column. For example, a csv file from excel may have omitted the beginning digit 0.

To add a string to each entry in a specific column or tuple,
UPDATE Tablename SET column = Concat(‘0’, column);