如何使用php和我的sql更改密码


How to change password using php and my sql?

嗨,我有一个php页面,在那里我写了一些html和php代码来更改密码,当我直接在localhost上运行这个页面时,它运行得很好。

但是当我把这个页面包括在任何其他html页面中并使用它时,都不起作用

这是我的代码

changepassword.php

<?php
session_start();
?>
<?php
$eid=$_SESSION['eid'];
echo $eid;
$conn = mysql_connect("localhost","root","root");
mysql_select_db("helixcrm",$conn);
if(count($_POST)>0) {
$result = mysql_query("SELECT *from login WHERE eid='" . $eid . "'");
$row=mysql_fetch_array($result);

if($_POST["currentPassword"] == $row["password"]) {
mysql_query("UPDATE login set password='" . $_POST["newPassword"] . "' WHERE eid='" . $eid . "'");
$message = "Password Changed";
} else $message = "Current Password is not correct";
}
?>
<html>
<head>
<title>Change Password</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script>
function validatePassword() {
var currentPassword,newPassword,confirmPassword,output = true;
currentPassword = document.frmChange.currentPassword;
newPassword = document.frmChange.newPassword;
confirmPassword = document.frmChange.confirmPassword;
alert(i+j+k);
if(!currentPassword.value) {
    currentPassword.focus();
    document.getElementById("currentPassword").innerHTML = "required";
    output = false;
}
else if(!newPassword.value) {
    newPassword.focus();
    document.getElementById("newPassword").innerHTML = "required";
    output = false;
}
else if(!confirmPassword.value) {
    confirmPassword.focus();
    document.getElementById("confirmPassword").innerHTML = "required";
    output = false;
}
if(newPassword.value != confirmPassword.value) {
    newPassword.value="";
    confirmPassword.value="";
    newPassword.focus();
    document.getElementById("confirmPassword").innerHTML = "not same";
    output = false;
}   
return output;
}
</script>
</head>
<body>
<form name="frmChange" method="post" action="" onSubmit="return validatePassword()">
<div style="width:500px;">
<div class="message"><?php if(isset($message)) { echo $message; } ?></div>
<table border="0" cellpadding="10" cellspacing="0" width="500" align="center" class="tblSaveForm">
<tr class="tableheader">
<td colspan="2">Change Password</td>
</tr>
<tr>
<td width="40%"><label>Current Password</label></td>
<td width="60%"><input type="password" name="currentPassword"  id="currentpassword"class="txtField"/><span id="currentPassword"  class="required"></span></td>
</tr>
<tr>
<td><label>New Password</label></td>
<td><input type="password" name="newPassword"  id="newpassword" class="txtField"/><span id="newPassword" class="required"></span></td>
</tr>
<td><label>Confirm Password</label></td>
<td><input type="password" name="confirmPassword" id ="confirmpassword"class="txtField"/><span id="confirmPassword" class="required"></span></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" value="Submit" class="btnSubmit"></td>
</tr>
</table>
</div>
</form>
</body></html>

这个页面运行良好,当我写这样的代码时,它不工作

<script type="text/javascript">
            $(document).ready(function() {
                $("#resetpassword").click(function() {
                    $(function() {
                        $("#RightPaneContainerDiv").load("changepassword.php");
                    });
                });
            });
        </script>

重置密码

这里上面的代码不工作

如何实现我的输出

提前感谢

不能将一个完整的html页面加载到另一个页面的div中。也许最简单的方法是使用iframe:

$("#resetpassword").click(function() {
      $(function() {
          $("#RightPaneContainerDiv").html('<iframe class="cpassword" src="changepassword.php"></iframe>');
      });
});

使用css 进行适当的样式设置