If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following:
<?php //include db credentials mysql_query("rename table TheOldName to TheNewName"); ?>
If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following:
<?php //include db credentials mysql_query("rename table TheOldName to TheNewName"); ?>