If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following:
1 2 3 4 5 6 7 |
<?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:
1 2 3 4 5 6 7 |
<?php //include db credentials mysql_query("rename table TheOldName to TheNewName"); ?> |