Skip to content
Snippets Groups Projects
Commit 30b351f5 authored by Oviya Balamurugan's avatar Oviya Balamurugan
Browse files

code for changing the password for the user

parent 42b74c0e
Branches
No related tags found
No related merge requests found
<?php
session_start();
include "database.php";
if(!isset( $_SESSION["ID"]))
{
header("location:ulogin.php");
}
?>
<!DOTYPE HTML>
<html>
<head>
<title>BOOK MANAGEMENT SYSTEM</title>
<link rel="stylesheet" type ="text/css" href="css/style.css">
</head>
<body>
<div id="container">
<div id="header">
<h1>BOOK MANAGEMENT SYSTEM</h1>
</div>
<div id="wrapper">
<h3 id="heading">Change password</h3>
<div id="center">
<?php
if(isset($_POST["submit"]))
{
$sql="SELECT * from student WHERE PASS ='{$_POST["opass"]} and ID='{$_SESSION["ID"]}'";
$res=$mysqli->query($sql);
if(!empty($res) && $res->num_rows > 0)
{
$s="update student set PASS='{$_POST["npass"]}' WHERE AID=".$_SESSION["ID"];
$mysqli->query($s);
echo "<p class='success'>Password Changed Successfully</p>";
}
else{
echo "<p class='error'>Invalid Password</p>";
}
}
?>
<form action ="<?php echo $_SERVER["PHP_SELF"];?>" method="post">
<label>Old Password</label>
<input type ="password" name="opass" required>
<label>New Password</label>
<input type ="password" name="npass" required>
<button type="submit" name="submit">Update Password</button>
</form>
</div>
</div>
<div id="navi">
<?php
include "usersidebar.php"
?>
</div>
<div id="footer">
<p>Copyright &copy; book management 2020</p>
<div>
</div>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment