PK

ADDRLIN : /home/anibklip/pcfcindia.com/bup16/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/bup16/superadmin/accupdate.php

<?php
include("connexion.php");
include("head.php");
?>

    <h2 id="icon_pick">Client Details Updated</h2> 

<?php $sql="UPDATE head SET headname='$_GET[headname]',headaddress='$_GET[headaddress]',headdecp='$_GET[headdecp]',headperson='$_GET[headperson]',headphone='$_GET[headphone]' WHERE headid='$_GET[id]'";
$result=mysql_query($sql) or die('error');

echo"<center><br><br><img src=msg.jpg alt=images><br><br>Client <b>$_GET[headname]</b> updated sucessfully, <a href=addaclnt.php>Click Here</a> to Add a new Client.
 <br><br><a href=clients.php>Click here to be back at Clients Management</a> </center>";
?>
<br><br><br>

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


PK 99