PK

ADDRLIN : /home/anibklip/pcfcindia.com/bkp17/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/bkp17/superadmin/update_sig.php

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

?>
   
<table width="100%" border="4" cellpadding="8" cellspacing="1">
<?php
$password=md5($pass);
 $sql="UPDATE signature SET user_id='$_POST[staff]',name='$_POST[name]',code='$_POST[code]',year='$_POST[year]',code1='$_POST[code1]' WHERE id='$_POST[id]'";
$result=mysql_query($sql) or die('error');
 echo "<script language='javaScript'> window.location=\"add_sig.php\"; </script>";
?>
</table>
</div>
</div>
<?php
include("foot.php");
?>


PK 99