PK

ADDRLIN : /home/anibklip/pcfcindia.com/bkp2019/
FLL :
Current File : /home/anibklip/pcfcindia.com/bkp2019/searched.php

<?php 
	session_start();
	require_once 'common/common.php';
	require_once 'common/secure.php';
	include("connexion.php");
	include"head.php";
?>
<table border="10"  bgcolor="#ffffff" bordercolor="#FF0000">
<?php

   echo "<tr><td>Certificate No.</td>	<td>Date of Issue</td>	<td>Department of good</td>	<td>Quantity declared:</td>  <td>Name of fumigant:</td> <td>Date of fumigant:</td> <td>Place of fumigant:</td> <td>Dosage rate of fumigant:</td> ";
$sql="SELECT * From certificate WHERE issuedate='$_GET[id]'";
$result=mysql_query($sql) or die('error in date');
if
(mysql_num_rows($result) == 0) {
    echo "<tr><td colspan=8 align=center colour=black><br>No Result found , please Enter Another Date.<br><br></td></tr>";
}
while($row=mysql_fetch_array($result))
{
echo"<tr><td><b>{$row['certificateno']}</b></td> <td>{$row['issuedate']}</td> <td>{$row['desgood']}</td> <td>{$row['quantitydeclared']}</td>  <td>{$row['namefumigant']}</td> <td>{$row['datefumigantion']}</td> <td>{$row['placefumigantion']}</td> <td>{$row['dosagefumigant']}</td></tr>";
}		
?>
<tr><td colspan="8" align="center" height="80"><a href="search.php"><center><strong><u>Search again</u></strong></center></a></td></tr>
</table>
<?php
include"foot.php";
?>


PK 99