<html>
<head><link rel="stylesheet" type="text/css" href="../common/styles.css" />
<title>Deleting 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>
<?
}
?>
</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>
</tr>
</table>
</form>
</body>
</html>