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

MYSQL Copy Table

Although some versions of phpmyadmin allow you to easily copy mysql tables; you may find it faster to use a query or in a position where phpmyadmin does not have the feature.

To copy and nename a mysql table,
1) open mysql prompy mysql> or the database with phpmyadmin
2) Type the command:
CREATE TABLE table2 SELECT * FROM table1;