Файл: MysqlIManager/MysqlIManager/droptable2.php
Строк: 20
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Rename table <?php print("$TABLE"); ?></title>
<link rel="stylesheet" href="settings.css" type="text/css">
</head>
<body>
<br><br><br><br>
<center>
<?php
include("common.inc");
mysql_select_db($DB, $connection);
$query = "DROP TABLE $Tablename";
$result = mysql_query($query) or die("ERROR while dropping table, not found!");
print("Table succesfully dropped!");
?>
</center>
</body>
</html>