
PK 
<?php
include "templatic/head.php";
include "templatic/header.php";
?>
<div class="box">
<h2>Create New Certificate</h2>
<div style="padding:0px 1px;">
<table width="100%" border="0" cellpadding="3" cellspacing="3" align="center">
<tr>
<td><center><img src="certificate.jpg" width="180" height="236"> </center></td>
</tr>
<tr>
<td align="center">
<form action="results.php" method="get">
<i>Find an Certificate/Invoice:</i>
<select name="status">
<option value="certificateno">Certificate No</option>
<!--option value="invoiceno">Invoice No</option>
<option value="certificateno_sub">Sub Certificate No</option>
-->
</select>
<input type="text" name="id">
<input type="submit" value="» Find »" class="amo-submit"><br>
<br></form>
</td></tr>
<form action="searched.php" method="POST">
<tr>
<td align="center">
<i>Search Certificate by Client</i>
<input type="text" name="client" id="exporterslist" />
<input type="submit" value="» Search »" class="amo-submit"><br><br>
</form></td>
</tr>
<form action="searched_agent.php" method="POST">
<tr>
<td align="center">
<i>Search Certificate by Agent</i>
<input type="text" name="ajtname" id="agentslist" />
<input type="submit" value="» Search »" class="amo-submit"><br><br>
</form></td>
</tr>
<tr>
<td align="center">
<strong>Report</strong>
</td>
</tr>
<form action="./print/report_print.php" method="get">
<tr>
<td align="center">
<i>Start Date</i>
<input type="text" size="15" name="st_date" placeholder="dd/mm/yyyy"/>
<i>End Date</i>
<input type="text" size="15" name="en_date" placeholder="dd/mm/yyyy" />
<input type="submit" value="» Seach »" class="amo-submit"><br><br>
</td></tr></form>
</table>
</div>
</div>
<?php
include "templatic/footer.php";
?>


PK 99