
PK 
<?php
session_start();
require_once 'common/common.php';
require_once 'common/secure.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]',
gst='$_GET[gst]',
status='$_GET[status]'
WHERE headid='$_GET[id]'
";
$result=mysql_query($sql) or die('error in head');
echo"<center><br><br><img src=msg.jpg alt=images><br><br>Client <b>$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