Файл: MysqlIManager/MysqlIManager/dropfield2.php
Строк: 18
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Drop field <?php print("$Field"); ?></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 = "ALTER TABLE $TABLE DROP COLUMN $Field";
$result = mysql_query($query) or die("ERROR while dropping field, not found!");
print("Field succesfully dropped!");
?>
</center>
</body>
</html>