
PK 
<?php
include "conn.php";
include "templatic/header.php";
?>
<h2 id="icon_pick">Client Details Updated</h2>
<?php $sql="UPDATE agents SET ajname='$_GET[ajentname]',ajaddress='$_GET[headaddress]',ajdec='$_GET[headdecp]',ajphone='$_GET[headphone]',status='$_GET[status]' WHERE ajid='$_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>Ajent <b>$_GET[ajentname]</b> updated sucessfully, <a href=addajent.php>Click Here</a> to Add a new Ajent.
<br><br><a href=clients.php>Click here to be back at Ajent Management</a> </center>";
?>
<br><br><br>
<?php
include "foot.php";
?>


PK 99