PK

ADDRLIN : /home/anibklip/pcfcindia.com/dump/
FLL :
Current File : /home/anibklip/pcfcindia.com/dump/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,parhead,status)
VALUES('$_GET[headname]','$_GET[headaddress]','$_GET[headdecp]','$_GET[headphone]','$_GET[headperson]','$dat','$_GET[btype]','active')";
$result=mysql_query($sql) or die('error');
echo "<center><br><br><img src=msg.jpg alt=Sucess><br><br>Client <b>$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