I am trying to save a copy of the records in tables_71 before I remove them and when the following executes it truncates tables_71 but does not save the records into tables_73
any ideas? Thank you.
$sql = "INSERT INTO 'mos_philaform_tables_73' SELECT * FROM 'mos_philaform_tables_71'";
mysql_query($sql);
$sql = "TRUNCATE TABLE `mos_philaform_tables_71`";
mysql_query($sql);





Bookmarks