
PK 
<?php
include "conn.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]',
gst='$_GET[gst]',
status='$_GET[status]'
WHERE headid='$_GET[id]'
";
$result=mysqli_query($conn,$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 "templatic/footer.php";
?>


PK 99