
PK 
<?php
include "templatic/head.php";
include "templatic/header.php";
?>
<h2 id="icon_pick">Client Details Updated</h2>
<?php $sql="UPDATE parties SET headname='$_GET[headname]',headaddress='$_GET[headaddress]',headdecp='$_GET[headdecp]',headperson='$_GET[headperson]',headphone='$_GET[headphone]',status='$_GET[status]' WHERE headid='$_GET[id]'";
$result=mysql_query($sql) or die('error in head');
echo"<center><br><br><img src=img/success.png 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