PK

ADDRLIN : /home/anibklip/pcfcindia.com/2021-22/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/2021-22/superadmin/updatelinkins.php

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

?>
    <h2 id="icon_pick">Manage Login</h2> 
<table width="100%" border="4" cellpadding="8" cellspacing="1">
<?php
$password=md5($_POST[pass]);
  $sql="UPDATE amembs SET user='$_POST[user]',pass='$password',name='$_POST[name]',fpques='$_POST[fpques]',fpans='$_POST[fpans]',prefix='$_POST[prefix]' WHERE id='$_POST[id]'";

$result=mysql_query($sql) or die('error');
echo"<p align=center><br><img src=../img/suclog.jpg><br><br><BR>Account details for <b>$name</b> Updated sucessfully.<BR><BR><a href=managelogins.php class=titletext> >> Click here to Get Back << </a><BR><BR><BR></p> ";
?>
</table>
</div>
</div>
<?php
include("foot.php");
?>


PK 99