How to delete mysql of table use php to write ? thank!!!
what do you mean by that?
If you mean how to delete (mySQL) table using php:
$res = mysql_query ("drop table $table");
See http://www.mysql.com/doc/en/DROP_TABLE.html
-Lurius