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");
?>

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>