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


PK 99