⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 change_passwd.php

📁 《PHP和MySQL Web开发》(第三版) Source
💻 PHP
字号:
<?php  require_once('bookmark_fns.php');  session_start();  do_html_header('Changing password');   // create short variable names  $old_passwd = $_POST['old_passwd'];  $new_passwd = $_POST['new_passwd'];  $new_passwd2 = $_POST['new_passwd2'];   try  {    check_valid_user();    if (!filled_out($_POST))      throw new Exception('You have not filled out the form completely. Please try again.');    if ($new_passwd!=$new_passwd2)       throw new Exception('Passwords entered were not the same.  Not changed.');    if (strlen($new_passwd)>16 || strlen($new_passwd)<6)       throw new Exception('New password must be between 6 and 16 characters.  Try again.');    // attempt update    change_password($_SESSION['valid_user'], $old_passwd, $new_passwd);    echo 'Password changed.';  }  catch (Exception $e)  {    echo $e->getMessage();  }  display_user_menu();   do_html_footer();?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -