PK

ADDRLIN : /home/anibklip/pcfcindia.com/dump/
FLL :
Current File : /home/anibklip/pcfcindia.com/dump/updetail.php

<?php
include"connexion.php";
include"head.php";

$sql="SELECT certypo FROM certificate WHERE certificateno='$_GET[id]'";
$result=mysql_query($sql) or die('error in fetching');
while($row=mysql_fetch_array($result))
{
  $certifi="{$row['certypo']}";
}
if($certifi=='a')
{include"forma.php";}
elseif($certifi=='b')
{include"formb.php";}
elseif($certifi=='c')
{include"formc.php";}
elseif($certifi=='d')
{
include"formd.php";
}

else
{
echo"<p align=center>PLEASE SELECT A CLIENT FIRST TO START ISSUING A CERTIFICATE TO,<BR><BR> <a href=certificate.php>Click here to start again!</a></p>";
}
include"foot.php";
?> 



PK 99