<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<link rel="stylesheet" href="settings.css" type="text/css">
</head>
<body background="images/bot.gif" style="BACKGROUND-POSITION: center 50%; BACKGROUND-REPEAT: no-repeat">
<center>
<form name=form1 action="adddb.php" method=post>
<INPUT type=hidden value=Add name=action>
<TABLE width="80%" align=center border=0>
<tr>
<td>
Add new database<BR>
<table border=0>
<tr><td></td></tr>
<tr>
<TD>DBname :</TD>
<TD><INPUT name=DBname></TD><td><INPUT type=submit value=Add!></form></td>
</tr>
</table>
</td>
<td>
Drop database<BR><form name=form2 action=adddb.php method=post>
<table border=0>
<tr>
<TD>DBname :</TD>
<TD><INPUT type=hidden value=Drop name=action><input type=text name=DBname></TD><td><INPUT type=submit value=Drop></td>
</tr>
</table>
<td>
</tr>
</TABLE></form>
<?php
if(!empty($msg)) {
print("<font color=#FF0000>$msg</font>");
}
?>
</center>
</body>
</html>
|