
PK 
<?php
include("head.php");
?>
<h2 id="icon_pick"><a href="clients.php" class="titletext">Manage Clients </a>
>> Add New Client Form</h2>
<br>
<strong> Fill in details for new Client Account:</strong>
<table cellspacing="3" align="center" width="100%" border="4" cellpadding="3">
<form action="clntadded.php" method="get">
<tr>
<td valign="top"><strong>Company Name</strong>:</td><td><input type="text" name="headname" size="33"></td>
</tr>
<tr><td><strong>Address</strong>:</td><td><textarea rows="4" cols="25" name="headaddress"></textarea></td></tr>
<tr><td><strong>Description</strong>:</td><td><textarea rows="4" cols="25" name="headdecp"></textarea></td></tr>
<tr>
<td valign="top"><strong>Contact Person</strong>:</td><td><input type="text" name="headperson" size="33"></td>
</tr>
<tr>
<td valign="top"><strong>Phone</strong>:</td><td><input type="text" name="headphone" size="33"></td>
</tr>
<tr><td align="center" colspan="2"><br><center><input type="submit" value="Add Client" class="amo-submit"></center></td></tr>
</form>
</table>
<?php
include "foot.php";
?>


PK 99