PK

ADDRLIN : /home/anibklip/vpgldh.com/vpgbk16/webmanager/
FLL :
Current File : /home/anibklip/vpgldh.com/vpgbk16/webmanager/ajentupdate.php

<?php
	include "templatic/head.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=mysql_query($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