<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Add User </title>
<link rel="stylesheet" href="settings.css" type="text/css">
</head>
<body>
<center>
Add User
<form name=form1 action=adduser2.php method=post>
<input type=hidden name=DB value="<?php print("$DB"); ?>">
<input type=hidden name=TABLE value="<?php print("$TABLE"); ?>">
<table border=0>
<tr><td>User name : </td><td><input type=text name=uname value=""></td></tr>
<TR>
<TD>Pasword</TD>
<TD><input type="password" name="pass"> </TD>
</TR>
<TR>
<TD></td><td><input type=submit value="Update!"></TD>
</TR>
</table>
</form>
</center>
</body>
</html>
|