<html>
<head><link rel="stylesheet" type="text/css" href="../common/styles.css" />
<title>Edit Domain</title>
</head>
<body>
<form method="post" action="domaintab.php">
<table border="0">
<tr>
<td class="label">Name</td>
<td><select id="domain_name" name="domain_name" class="select" onChange="showHint(this.value)">
<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>
<td class="label">Description</td>
<td><textarea rows="5" cols="20" class="textboxarea" id="domain_description" name="domain_description"></textarea></td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr><td></td>
<td><input type="submit" value=" Edit " class="button" name="edit">
<input type="reset" value=" cancel " class="button"></td>
<td><img src="../common/HelpIcon.gif" height="30" width="30" type="" name="Submit" id="editdomainhelp" onClick="handleSearchSuggest(this.id)" class="pointer"><div id="help" class="length" >
</div>
</td>
</tr>
</table>
</form>
</body>
</html>