
PK 
<?php
include("connexion.php");
include"head.php";
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/ppq.php";
} elseif ($_GET[formno] == 'd') {
include"form/aus.php";
} elseif ($_GET[formno] == 'e') {
$_SESSION['cert_created']=false;
include "form/nspm.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