PK

ADDRLIN : /home/anibklip/pcfcindia.com/backup14/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/backup14/superadmin/clntadded.php

<?php
include("connexion.php");
include("head.php");
?>
    <h2 id="icon_pick">Client Added</h2> 
<?php
$dat=date("d-m-Y");
$sql="INSERT INTO head(headname,headaddress,headdecp,headphone,headperson,headdate)
VALUES('$_GET[headname]','$_GET[headaddress]', '$_GET[headdecp]','$_GET[headphone]','$_GET[headperson]','$dat')";
$result=mysql_query($sql) or die('error');
echo "<center><br><br><img src=msg.jpg alt=Sucess><br><br>Client <b>$_GET[headname]</b> Added Sucessfully, <a href=addaclnt.php>Click here</a> to Add Another Client.
<br><br>
<a href=clients.php>Click here to be back at Clients Management</a><br></center>
";
?>
<br><br><br>

<?php
include "foot.php";
?>


PK 99