pwdEdit.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. $page = $_GET['Page'] ?? '';
  6. $keys = $_GET['Keys'] ?? '';
  7. $ord = $_GET['Ord'] ?? '';
  8. $hrefstr = "?keys=" . urlencode($keys) . "&Ord=" . urlencode($ord) . "&Page=" . $page;
  9. $employee_id = $_SESSION['employee_id'];
  10. $act = $_GET['act'] ?? '';
  11. if ($act == 'save') {
  12. $em_tel = textEncode($_POST['em_tel'] ?? '');
  13. $em_email = textEncode($_POST['em_email'] ?? '');
  14. $em_password = md5($_POST['em_password'] ?? '');
  15. $pwd = md5($_POST['pwd'] ?? '');
  16. $pwdre = md5($_POST['pwdre'] ?? '');
  17. $editpwd = false;
  18. if (!is_numeric($employee_id)) {
  19. $employee_id = 0;
  20. }
  21. if ($pwd !== '8f00b204e9800998' && $pwdre !== '8f00b204e9800998') {
  22. $editpwd = true;
  23. if ($pwd !== $pwdre) {
  24. echo "<script>alert('两次密码输入不一致!');history.back();</script>";
  25. exit;
  26. }
  27. }
  28. $result = $conn->query("SELECT * FROM employee WHERE id=" . (int)$employee_id);
  29. if ($row = $result->fetch_assoc()) {
  30. $changeSuccess = 1;
  31. $sql = "UPDATE employee SET
  32. em_email='" . $conn->real_escape_string($em_email) . "',
  33. em_tel='" . $conn->real_escape_string($em_tel) . "'";
  34. if ($editpwd) {
  35. if ($em_password === $row['em_password']) {
  36. $sql .= ", em_password='" . $conn->real_escape_string($pwd) . "'";
  37. $changeSuccess = 2;
  38. } else {
  39. $changeSuccess = 3;
  40. }
  41. }
  42. $sql .= " WHERE id=" . (int)$employee_id;
  43. $conn->query($sql);
  44. if ($changeSuccess == 1) {
  45. echo "<script>alert('资料修改成功!');history.back();</script>";
  46. } elseif ($changeSuccess == 2) {
  47. echo "<script>alert('密码修改成功!请退出重新登录');location.href='index.php?act=logout';</script>";
  48. } else {
  49. echo "<script>alert('原始密码错误!');history.back();</script>";
  50. }
  51. exit;
  52. }
  53. }
  54. $result = $conn->query("SELECT em_email, em_tel FROM employee WHERE id=" . (int)$_SESSION['employee_id']);
  55. $row = $result->fetch_assoc();
  56. $em_tel = $row['em_tel'] ?? '';
  57. $em_email = $row['em_email'] ?? '';
  58. ?>
  59. <!DOCTYPE html>
  60. <html xmlns="http://www.w3.org/1999/xhtml">
  61. <head>
  62. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  63. <title>管理区域</title>
  64. <link rel="stylesheet" href="css/common.css" type="text/css" />
  65. <script src="system/js/jquery-1.7.2.min.js"></script>
  66. <script src="js/js.js"></script>
  67. <script src="system/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  68. <style>
  69. body {
  70. margin: 0;
  71. padding: 20px;
  72. background: #fff;
  73. }
  74. #man_zone {
  75. margin-left: 0;
  76. }
  77. </style>
  78. </head>
  79. <body class="clear">
  80. <?php // require_once 'panel.php'; ?>
  81. <div id="man_zone">
  82. <form name="form1" method="post" action="pwdEdit.php<?= $hrefstr ?>&act=save" onSubmit="return checkpwd();">
  83. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  84. <tbody>
  85. <tr>
  86. <th width="8%">电话:</th>
  87. <td><input type="text" id="em_tel" name="em_tel" value="<?= htmlspecialcharsFix($em_tel) ?>" class="txt1" /></td>
  88. </tr>
  89. <tr>
  90. <th width="8%">邮箱:</th>
  91. <td><input type="text" id="em_email" name="em_email" value="<?= htmlspecialcharsFix($em_email) ?>" class="txt1" /></td>
  92. </tr>
  93. <tr>
  94. <th width="8%">原始密码:</th>
  95. <td><input type="password" id="em_password" name="em_password" value="" class="txt1" placeholder="不修改密码请留空" /></td>
  96. </tr>
  97. <tr>
  98. <th width="8%">新密码:</th>
  99. <td><input type="password" id="pwd" name="pwd" value="" class="txt1" placeholder="不修改密码请留空" /></td>
  100. </tr>
  101. <tr>
  102. <th width="8%">请再次输入</th>
  103. <td><input type="password" id="pwdre" name="pwdre" value="" class="txt1" placeholder="不修改密码请留空" /></td>
  104. </tr>
  105. <tr>
  106. <th></th>
  107. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /></td>
  108. </tr>
  109. </tbody>
  110. </table>
  111. </form>
  112. </div>
  113. </body>
  114. </html>