<!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>
Add new table to database <font color=#FF0000><?php print("$DB"); ?></font><br><br>
<form name=form1 action=addtable2.php method=post>
<input type=hidden name=DB value="<?php print("$DB"); ?>">
<TABLE>
<TR>
<TD>Table name : </TD>
<TD><INPUT name=Tablename></TD>
<TD><INPUT type=submit value="Add table"></TD></TR></TABLE></form>
</center>
</body>
</html>
|