<html>
<head><link rel="stylesheet" type="text/css" href="../common/styles.css" />
<title>Deleting Analyst</title>
</head>
<body>
<form method="post" action="analysttab.php">
<table border="0">
<tr>
<td class="label">ID </td>
<td> <select name="analyst_name" class="select">
<option value="">-select-</option>
<?php
require("../common/database.php");
$result = mysql_query( "SELECT Name FROM analyst");
while($row=mysql_fetch_array($result)){
?>
<option value="<?php echo $row['Name']?>"><?php echo $row['Name']?></option>
<?php
}
?>
</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="button" value=" cancel " class="button"></td>
<img src="../common/HelpIcon.gif" height="30" width="30" type="" name="Submit" id="deleteanalysthelp" onClick="handleSearchSuggest(this.id)" class="pointer"><div id="help" class="length" >
</div>
</td>
</tr>
</table>
</form>
</body>
</html>