<html>
<head><link rel="stylesheet" type="text/css" href="../common/styles.css" />
<title>Deleting Domain</title>
</head>
<body>
<form method="post" action="domaintab.php">
<table border="0">
<tr>
<td class="label">Name </td>
<td><select name="domain_name" class="select">
<option>-select-</option>>
<?php
require("../common/database.php");
$result = mysql_query( "SELECT Name FROM domain");
while($row=mysql_fetch_array($result)){
?>
<option value="<?php echo $row['Name']?>"><?php echo $row['Name']?></option>
<?
}
?>
</select>
<td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr><td></td>
<td><input type="submit" value=" Delete " class="button" name="delete">
<input type="reset" value=" cancel " class="button"></td>
<td><img src="../common/HelpIcon.gif" height="30" width="30" type="" name="Submit" id="deletedomainhelp" onClick="handleSearchSuggest(this.id)" class="pointer"><div id="help" class="length" >
</div>
</td>
</tr>
</table>
</form>
</body>
</html>