✏️ 正在编辑: change_pwd.php
路径:
/home/llpreacharge/public_html/user/change_pwd.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php session_start(); if($_SESSION['rid']) { $userid=$_SESSION['rid']; } else { header('location:../login.php'); } ?> <?php include'connection.php'; $query8="select * from wallet where Userid='$userid' order by Id desc"; $result8=mysqli_query($con,$query8); $data8=mysqli_fetch_array($result8); $currentbal= $data8['Balance']; $query2="select * from distributer where Userid='$userid'"; $result2=mysqli_query($con,$query2); $data=mysqli_fetch_array($result2); $username=$data['Name']; ?> <html> <title>LLP Recharge</title> <head> <style> body{background:url('bg.jpg'); background-size:cover; width:100%; height:700px; margin:0px;} .head{background:; width:1350px; height:85px; margin:0px;} #p1{font-size:34px; float:left; Margin:10 0 0 45px; color:#996420; font-weight:bold;} #p2{font-size:20px; float:left; margin:28 0 0 -8px; color:#eaa040; font-family:Courier;} #p3{font-size:15px; font-family:Comic Sans MS; float:left; color:#996420; margin-top:48px; margin-left:-153px;} .h2{background:white; width:400px; height:70px; margin:10 200px;} #link1{float:right; margin:10 30 0 0px; font-size:20px; text-decoration:none; color:white; background:red; padding:5px; border-radius:4px;} #link2{float:right; margin:10 30 0 0px; font-size:20px; background:white;color:Green; padding:5px; border-radius:4px;} #link1:hover{ padding:5px; border-radius:4px; color:black;} .menu{background:#996420; height:40px; width:1300px; margin:0 0 0 20px; padding:0;} .menu ul{padding:0; margin:0; position:relative; display:inline-block;} .menu ul li{list-style:none; float:left; width:170px; line-height:40px; text-align:center; font-size:15px; margin:0; padding:0; color:white;} .menu ul li ul {display:none;} .menu ul li:hover{background:#d1994a; cursor:pointer;} .menu ul li:hover ul {display:block; z-index:2;} .menu ul li:hover ul li{background:#d1994a; border-top:solid white 0.1px;} .menu ul li ul li:hover{background:#996420; color:white;} .menu ul li ul li:hover a{ color:white;} .menu ul li a{ text-decoration:none; color:white;} #a1{border:none; color:white;} .menu{letter-spacing:1px;} #bal:hover{background:#996420; cursor:text;} .content{ width:1380px; height:250px; margin:100px; padding:0; } .content h3{padding-left:20px;} .listhead{width:500px; height:40px; background:#996420; margin:10 0 0 20px;} .listhead h3{margin:80 0 0 10px; line-height:40px; color:white;} #m1{float:right; margin:7 20 0 0px;} #t1{width:500px; border-collapse:collapse; border:1px solid black; margin:0 0 0 20px;} #t1 th{font-size:22px; background:#687388; color:white;} #t1 td{font-size:22px; background:#f3f4f5; } #t1 input{width:200px; height:30px; border:1px solid black; padding:5px; margin-left:15px;} #btn{width:200px; height:50px; background:green; color:white; margin:10 0 0 320px; font-size:20px; cursor:pointer;} </style> </head> <body> <div class="head"> <p id="p1">LLP</p> <p id="p2">Recharge</p> <p id="p3">The Complete Solution</p> <a id="link1" href="logout.php">Log Out</a> </div> <div class="menu"> <ul> <li><a href="recharge_home.php" id="a1">Home</a></li> <li>Reports <ul> <li><a href="recharge_history.php">Recharge History</a></li> <li><a href="account_reports.php">Account Reports</a></li> <li><a href="check_status.php">Check Status</a></li> </ul> </li> <li>Documents <ul> <li><a href="my_commission.php">My Commission</a></li> <li><a href="commision.php">Get Commission</a></li> <li><a href="complain.php">Complain</a></li> </ul> </li> <li>Profile <ul> <li><a href="change_profile.php">Change Profile</a></li> <li><a href="change_pwd.php">Change Password</a></li> </ul> </li> <li>Payment Request <ul> <li><a href="payment_request.php">Update Payment</a></li> <li><a href="bank_list.php">Bank List</a></li> </ul> </li> <li id="bal">Balance : <?php echo $currentbal; ?></li> </ul> </div> <div class="content"> <?php include'connection.php'; $queryget="select * from retailer where Userid='$userid'"; $resultget=mysqli_query($con,$queryget); $row=mysqli_fetch_array($resultget); $pwd=$row['Password']; if(isset($_POST['submit'])) { $oldpwd=$_POST['oldpwd']; $newpwd=$_POST['newpwd']; $confmpwd=$_POST['confmpwd']; if($oldpwd==$pwd) { if($newpwd==$confmpwd) { $query="update retailer set Password='$newpwd' where Userid='$userid'"; if(mysqli_query($con,$query)) { echo "<h1 align='center'><font color='#008000'> ✔ Change Password Successfully !</font></h1>"; } } else { echo "<h1 align='center'> <font color='#ff0000'> ✖ New Password And Confirm Password Does Not Match !</font></h1>"; } } else { echo "<h1 > <font color='#ff0000'> ✖ Old Password Is Not Correct !</font></h1>"; } echo "<META HTTP-EQUIV ='Refresh' Content ='10' >"; } ?> <div class="listhead"> <h3>Change Password</h3> </div> <form method="post"> <table border="1" cellpadding="5" id="t1"> <tr> <th><p id="m1">Old Password:</p></th> <td ><input type="password" name="oldpwd"></td> </tr> <tr> <th><p id="m1">New Password:</p></th> <td ><input type="password" name="newpwd"></td> </tr> <tr> <th><p id="m1">Confirm Password:</p></th> <td ><input type="password" name="confmpwd"></td> </tr> </table> <input type="submit" name="submit" value="Change Password" id="btn"> </form> </div> </body> </html>
💾 保存文件
← 返回文件管理器