PK

ADDRLIN : /home/anibklip/pcfcindia.com/bkp2023-24/
FLL :
Current File : /home/anibklip/pcfcindia.com/bkp2023-24/xcertificate.php

<?php 
	session_start();
	require_once 'common/common.php';
	require_once 'common/secure.php';
include"head.php";
include"connexion.php";
?><head>
<script language="JavaScript" src="ajax.js"></script>
<link href="css.css" rel="stylesheet" type="text/css"/>
</head>

<div id="content">
<div class="error-notice">
Select the Followings:
<table width="100%" border="1" cellspacing="0" cellpadding="0">
	<form action="form.php" method="get">
  <tr>
      <td align="center" width="50%"> 	<div id="loading"></div>
	 Client Type :
	 			<?php
					require_once("getagents.php");
					$obj = new AjaxDropdown();
					$arr = $obj->getArray(0);
					$strRet .= '<option value="0">-Select a Type-</option>';
					foreach ( $arr as $row )
					{
						$strRet .= '<option value="'.$row->headid.'">'.$row->headname.'</option>';
					}					
				?>
				<select name="selCat" class="text" onChange="javascript:Ajax.Request('getagents.php?method=getXML&param=',this.value, Ajax.Response);">
					<?php echo $strRet; ?> 
	 </td>
<td align="center" width="50%">Client Name: 
<select name="clnt" id="selSubCat" class="text">
					<option value="0">-Select a Client-</option>
				</select>
	</td>
  </tr>
  <tr>
    <td width="50%">Form Type: <select name="formno"><option value="a">ALP</option><option value="b">PPQ</option><option value="c">AQS</option></select></td>
    <td width="50%">Cert. Type: <select name="dtype"><option value="import">Importer</option><option value="export">Exporter</option></select></td>
  </tr>
  <tr>
    <td colspan="2" align="center"><center><input type="submit" value="&raquo; Start Certification &raquo;" class="amo-submit"></center></td>
  </tr>
</table>
</form>
    <p> Choose the above data carefully and correctly.</p>
  </div>
</div>
<hr class="hide" />

<?php
include"foot.php";
?>


PK 99