You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
494 B

  1. <?php
  2. $post = $_POST;
  3. $passwords = md5("Zzcx8888");
  4. $sql = "update base_user set USER_PASSWORD = $passwords where ID = $post[id]";
  5. $result=$pdo->query($sql);
  6. if($result){
  7. $code = 0;
  8. $info = 'success';
  9. $massge = '成功';
  10. }else{
  11. $code = -1;
  12. $info = 'fail';
  13. $massge = '失败';
  14. }
  15. $json['code'] = $code;
  16. $json['info'] = $info;
  17. $json['massge'] = $massge;
  18. //print_r($json);
  19. echo json_encode($json);
  20. ?>