03-02-2008, 09:25 PM
|
#6 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
How many tables do you have? You could just use DROP TABLE ( MySQL :: MySQL 5.1 Reference Manual :: 12.1.16 DROP TABLE Syntax) on each one.
PHP Code:
mysql_query("DROP TABLE foo");
mysql_query("DROP TABLE bar");
// ...
Might take a while if you have thousands of tables though
Alan
|
|
|