PK

ADDRLIN : /home/anibklip/vpgldh.com/vpgambala17/webmanager/_docs/
FLL :
Current File : /home/anibklip/vpgldh.com/vpgambala17/webmanager/_docs/certificate-nspm-print.php

<?php
	include "includes/dbconnect.php"; 
?><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.
<? 
$session_city = 'amritser';
//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]'";
$sqlu="SELECT * FROM signature WHERE user_id='1'";
$resultu=mysql_query($sqlu) or die('error in fetching signature');
$rowu=mysql_fetch_array($resultu);

?>

/<?php echo $_POST['certno']; ?>/<? echo $rowu['year'];?></strong></font></td>
<td width="55%" colspan="2" align="center" valign="top"><strong>Date of Issue: <?php echo @date("d/m/Y"); ?></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='$_POST[clntid]'";
$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 $_POST['invoice']; ?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Description of consignment:</strong></td><td colspan="2"><?php echo $_POST['desc']; ?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Type and No. of Packges:</strong></td><td colspan="2"><?php echo $_POST['pack']; ?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Container no. or Vessel:</strong></td><td colspan="2"><?php echo $_POST['vessel']; ?></td>
</tr>

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

<tr>
<td valign="top"  colspan="2"><strong>Destination Port:</strong></td><td colspan="2"><?php echo $_POST['destinat']; ?></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 $_POST['chem']; ?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Dosage:</strong></td><td colspan="2"><?php echo $_POST['dosage']; ?></td>
</tr>
<tr>
<td valign="top"  colspan="2"><strong>Temperature:</strong></td><td colspan="2"><?php echo $_POST['temp']; ?></td>
</tr>

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

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


<tr>
<td colspan="2"><strong>Remark:</strong></td>
<td colspan="2"><?php echo $_POST['remark']; ?></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