PK

ADDRLIN : /home/anibklip/ulpc.in/2014-2015/
FLL :
Current File : //home/anibklip/ulpc.in/2014-2015/subclntupdated.php

<?php 
	session_start();
	require_once 'common/common.php';
	require_once 'common/secure.php';

include("connexion.php");
include("head.php");
?>

    <h2 id="icon_pick">Sub Client Details Updated</h2> 

<?php 
$sql="UPDATE clients SET subname='$_GET[subname]',subaddress='$_GET[subaddress]',subperson='$_GET[subperson]',subphone='$_GET[subphone]', status='$_GET[status]' WHERE subid='$_GET[id]'";
$result=mysql_query($sql) or die('error in head');

echo"<center><br><br><img src=msg.jpg alt=images><br><br>Client <b>$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