<html>
<head><link rel="stylesheet" type="text/css" href="../common/styles.css" />
<title>Deleting a client</title>
</head>
<body>
<form method="post" action="clienttab.php">
<table border="0">
<tr>
<td class="label">Name </td>
<td><select name="client_name" class="select">
<option value="">-select-</option>
<?php
require("../common/database.php");
$result = mysql_query( "SELECT Name FROM client");
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="reset" value=" Cancel " class="button"></td>
<img src="../common/HelpIcon.gif" height="30" width="30" type="" name="Submit" id="deletehelp" onClick="handleSearchSuggest(this.id)" class="pointer"><div id="help" class="length" >
</div>
</td>
</tr>
</table>
</form>
</body>
</html>