PHP Tutorials : Rename a mysql table

If you want to rename a mysql table via php you just need an extremely simple query like the following one:

<?php
//include db credentials

mysql_query(“rename table TheOldName to TheNewName”);
?>

Read PHP Tutorials : Rename a mysql table »