PK

ADDRLIN : /home/anibklip/pcfcindia.com/bkp17/
FLL :
Current File : /home/anibklip/pcfcindia.com/bkp17/printcerta_sub.php

<?
$sqlu1="SELECT * FROM certificate_sub WHERE sub_certificateno='$_GET[id]'";
$resultu1=mysql_query($sqlu1) or die('error in fetch');
$rowu1=mysql_fetch_array($resultu1);

?><head>
<style type="text/css">
.printo {
		font-style: normal;
		color: #000000;
		letter-spacing: 0;
		display: block;
		padding-top: 1px;
		font-size: 90%;
        border-bottom:solid;
		border:thin;

}
</style>
</head>
<body onLoad="window.print(); window.close();">

<br /><br />
<table cellspacing="3" align="center" width="100%" border="0" cellpadding="3" class="printo">
   <tr>
      <td valign="top" colspan="4"> <center><h4> <font face="Arial, Helvetica, sans-serif"> CERTIFICATE OF FUMIGATION</font> </h4> </center> 
      </td>
    </tr>  
<tr>
<td valign="top" colspan="4"><font face="Arial, Helvetica, sans-serif"><strong>Dte PPQS Regd. No.: 104/MB</strong></font></td>
</tr>
      
<td valign="top" colspan="3"><font face="Arial, Helvetica, sans-serif"><strong>Treatment Certificate No.<? 
//echo $_SESSION['city'];
if($_SESSION['city']=="ludhiana")
{
echo "LDH";
}
else if($_SESSION['city']=="amritser")
{
echo "ASR";
}
$sqlu="SELECT * FROM signature WHERE user_id='$_SESSION[user_id]'";
$resultu=mysql_query($sqlu) or die('error in fetch');
$rowu=mysql_fetch_array($resultu);
?>

/<?php echo "$_GET[id]";?>/<? echo $rowu['year'];?></strong></font></td>
<td width="55%" colspan="2" align="center" valign="top"><strong>Date of Issue: <?php echo "$rowu1[issuedate]"; ?></strong></td>
</tr>
			
	<tr><td colspan="4">  &nbsp;This is to certify that this consignment has been treated as per details listed below and that subject consignment
is believed to be substantially free from any injurious pests.</td></tr>  		

<tr>
<td valign="top" colspan="2"><strong>Name of Importer/Exporter:</strong></td>
<td colspan="2">
<?php

$sql="SELECT headname,headaddress,headphone FROM head WHERE headid='$rowu1[clnid]'";
$result=mysql_query($sql) or die('error in fetch');
while($row=mysql_fetch_array($result))
{
 echo "{$row['headname']}<br>{$row['headaddress']}";
}
?>
</td>
</tr>
<td valign="top"  colspan="2"><strong>Invoice No.</strong>:</td><td colspan="2"><?php echo "$rowu1[nameship]";?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Description of consignment:</strong></td><td colspan="2"><?php echo "$rowu1[desgood]";?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Type and No. of Packges:</strong></td><td colspan="2"><?php echo "$rowu1[quantitydeclared]";?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Container no. or Vessel:</strong></td><td colspan="2"><?php echo "$rowu1[conslinkno]";?></td>
</tr>

<tr>
<td valign="top"  colspan="2"><strong>Means of conveyance:</strong></td><td colspan="2"><?php echo "$rowu1[distmarks]";?></td>
</tr>

<tr>
<td valign="top"  colspan="2"><strong>Destination Port:</strong></td><td colspan="2"><?php echo "$rowu1[countrydes]";?></td>
</tr>
<tr><td valign="top"  colspan="4">  <center><h4> SCHEDULE OF TREATMENT </h4> </center> </td></tr>  
<tr>
<td valign="top"  colspan="2"><strong>Chemical (Fumigant):</strong></td><td colspan="2"><?php echo "$rowu1[namefumigant]";?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Dosage:</strong></td><td colspan="2"><?php echo "$rowu1[dosagefumigant]";?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Temperature:</strong></td><td colspan="2"><?php echo "$rowu1[airtemp]";?></td>
</tr>

<tr>
<td valign="top"  colspan="2"><strong>Duration of Exposure:</strong></td><td colspan="2"><?php echo "$rowu1[durationfumigantion]";?></td>
</tr>

<tr>
<td valign="top"  colspan="2"> <strong>Date of Fumigation:</strong></td><td colspan="2"><?php echo "$rowu1[datefumigantion]";?></td>
</tr>


<tr>
<td colspan="2"><strong>Remark:</strong></td>
<td colspan="2"><?php echo "$rowu1[decla]";?></td>
</tr>
<tr>
<td colspan="2"></td>
<td colspan="2"><br /><br /><strong>For PEST CONTROL & FUMIGATION COMPANY</strong><br /><br /><br /><br />
<strong>Authorised Signatory</strong></td>

<tr><td colspan="4">P.S. : No liability attaches to the certifying company or it proprietors or representatives with respect to this certificate</td></tr>
<tr><td colspan="4"><center>Recognised by: GOVERNMENT OF INDIA</center></td></tr>
</table>
</body>


PK 99