Kód: Vybrať všetko
<?php
mysql_connect('host', 'empiko', 'heslo') or die ("no go");
$sql = "SHOW TABLES FROM test";
$result = mysql_query($sql);
if (!$result) {
echo "DB Error, could not list tables\n";
echo 'MySQL Error: ' . mysql_error();
exit;
}
while ($row = mysql_fetch_row($result)) {
$sql1 = "DROP TABLE $row[0]"
$result1 = mysql_query($sql1);
}
?>