
PK 
<?php
include("connexion.php");
include"head.php";
//echo $_GET[formno];
if($_GET[clnt]!='0'){
if($_GET[formno]=='a'){
include"form/alp.php";
}elseif($_GET[formno]=='b'){
include"form/aqis.php";
}elseif($_GET[formno]=='c'){
include"form/nspm.php";
}elseif($_GET[formno]=='d'){
include"form/aus.php";
}elseif($_GET[formno]=='e'){
include"form/nalp.php";
}
}else{
echo"<p align=center><img src=1warning.png /></p><p align=center>PLEASE SELECT/ADD A NEW CLIENT FIRST TO START ISSUING A CERTIFICATE <BR><BR> <a href=certificate.php>Click here to start again!</a></p>";
}
include"foot.php";
?>


PK 99