清空MYSQL数据库的简单办汿
Posted by l4ever on 2005-03-17 23:55
<?php $user = ""; //数据库用户名
$password = "";//数据库密瞿nbsp;
$db_name = "";//数据库名
$link = mysql_connect("localhost:3306",$user,$password);
mysql_select_db("$db_name",$link);
echo "<p>正在清空数据帿..";
$result=mysql_query("SHOW tables",$link);
while ($currow=mysql_fetch_array($result)) {
mysql_query("drop TABLE IF EXISTS $currow[0]");
echo $currow[0]."<br>";
}
echo "成功</p>";
?>
—–


