Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.145.73.167
<?php
require_once('auth.php');
include("header.php");
?>
<!--- Header Over -->
<body>
<h3></h3>
<p> </p>
<?php
include('link.php');
$a_id = $_REQUEST['id'];
$username = $_REQUEST['username'];
$txtchaoldpassword = $_REQUEST['txtchaoldpassword'];
$txtnewpassword = $_REQUEST['txtnewpassword'];
$firstsql="UPDATE usertable set fpassword='$txtnewpassword' WHERE id = '$a_id'";
$firstresult = mysql_query($firstsql);
if($firstresult)
{
?>
<table width="73%" height="350" border="0" align="center">
<tr>
<td align="center"><div align="center" style="display:inline-table;; font-weight: bold; font-family: "Trebuchet MS"; font-size: 24px; color: #000000">Your Password has been changed successfully.<br />
<br />Please Wait....</div></td>
</tr>
</table>
<meta http-equiv="refresh" content="1; url=login.php">
<?php
//Start session
// session_start();
//Unset the variables stored in session
//unset($_SESSION['SESS_MEMBER_ID']);
}
else
{
echo("Error!");
}
?>
<?php include("footer.php"); ?>
|