
PK 
<?php
session_start();
require_once '../common/common.php';
require_once '../common/secure.php';
include("connection.php");
include ("../head_account.php");
?>
<div align="left" style="float:left;"><!-- <a href="tax_report.php">Back</a> --></div>
<div align='center'>
<form action="modify_action.php" method="post" >
<table width="500px" border="0px">
<tr>
<td colspan="3">Search </td>
</tr>
<tr>
<td colspan="3">
<?php
if($_GET['error']=='yes')
{
echo '<p align="center" style="color: #991313">Invalid Invoice Number</p>';
}
?>
</td>
</tr>
<tr>
<form action="modify_action.php" method="post" >
<td>Invoic No:</td>
<td><input type="text" name="inv_amount" id="inv_amount" /></td>
<td>
<input type="hidden" name="search" value="srch_by_invc"/>
<input type="submit" value="Search" />
</td>
</form>
</tr>
<tr>
<td colspan="3" align="center"><p align="center">Or</p></td>
</tr>
<tr>
<form action="modify_action.php" method="post" >
<td>Certificate No:</td>
<td><input type="text" name="crt_amount" id="crt_amount" /></td>
<td>
<input type="hidden" name="search" value="srch_by_cert"/>
<input type="submit" value="Search" />
</td>
</form>
</tr>
<tr>
<td colspan="3">
<input type="button" value="Back" onclick="history.go(-1);" />
</td>
</tr>
</table>
</form>
</div>
<?php
include ("../foot.php");
?>


PK 99