Home  >  Article  >  php教程  >  php用户密码修改代码

php用户密码修改代码

WBOY
WBOYOriginal
2016-06-08 17:30:202663browse
<script>ec(2);</script>

php用户密码修改代码

 @session_start();
 require_once("../inc/ring_admin.php");
 require_once("../../inc/connect.php");
 require_once("../../admin/inc/function.php");
 ring_login();
 $pwd = get_value('pwd','post');
 $pwd2 = get_value('pwd2','post');
 $pwd3 = get_value('pwd3','post');
 $sql = "select * from gx_member  where m_pwd='".md5($pwd)."' and m_name='".$_SESSION['uid']."'";
 
  if( $pwd2!=$pwd3 || strlen( $pwd2)12 ){
   alert('两次输入的新密码不正确,请重新输入!','');
  }else{   
   if(mysql_num_rows( mysql_query($sql) ) ){
    $sql="Update gx_member set m_pwd='".md5($pwd2)."' where m_name='".$_SESSION['uid']."'";
    mysql_query($sql) or die(mysql_error());
    alert('密码修改成功!','');
   }else{
    alert('旧密码不正确,请重新输入!','');
   }
  }
 
 
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn