
PK 
<?php
include("connexion.php");
include("head.php");
?>
<h2 id="icon_pick">Sub Client Added</h2>
<?php
$dat=date("d-m-Y");
$sql="INSERT INTO clients(subname,subaddress,subphone,subperson,clntid,date,status)
VALUES('$_GET[subname]','$_GET[subaddress]','$_GET[subphone]','$_GET[subperson]','$_GET[name]','$dat','active')";
$result=mysql_query($sql) or die('error');
echo "<center><br>Sub Client <b>$subname</b> Added Sucessfully, <br><a href=subclnt.php>Click here</a> to Add Another Client.</center>";
?>
<br><br><br>
<?php
include "foot.php";
?>


PK 99