<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Add new table to database <?php print("$DB"); ?></title>
<link rel="stylesheet" href="settings.css" type="text/css">
</head>
<body>
<center>
<br><br><br><br>
<?php
include("common.inc");
$dbf->select_db($DB);
$query = "CREATE TABLE $Tablename 'Id int(3) auto_increment'";
$result = $dbf->query($query) or die("ERROR while adding new table");
print("New table has been added succesfully!");
?>
</center>
</body>
</html>
|