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

Add String to all entries in a Column with MYSQL

Add text to a string with MYSQL Concat Function

The code will allow will add .php to each entry in the url column.

1) Open mysql> or phpmyadmin
2) Open sql in phpmyadmin or use mysql> prompt
3) Execute the command:
UPDATE tablename set url=concat(url,’.php’) where id>’0′;