
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 ajent SET
ajname='$_GET[ajentname]',
ajaddress='$_GET[headaddress]',
ajdec='$_GET[headdecp]',
ajphone='$_GET[headphone]',
gst='$_GET[gst]',
status='$_GET[status]'
WHERE ajid='$_GET[id]'
";
$result=mysql_query($sql) or die('error in head');
echo"<center><br><br><img src=msg.jpg 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