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

📄 member.php

📁 《PHP和MySQL Web开发》(第三版) Source
💻 PHP
字号:
<?php// include function files for this applicationrequire_once('bookmark_fns.php'); session_start();//create short variable names$username = $_POST['username'];$passwd = $_POST['passwd'];if ($username && $passwd)// they have just tried logging in{  try  {    login($username, $passwd);    // if they are in the database register the user id    $_SESSION['valid_user'] = $username;  }  catch(Exception $e)  {    // unsuccessful login    do_html_header('Problem:');    echo 'You could not be logged in.           You must be logged in to view this page.';    do_html_url('login.php', 'Login');    do_html_footer();    exit;  }      }do_html_header('Home');check_valid_user();// get the bookmarks this user has savedif ($url_array = get_user_urls($_SESSION['valid_user']))  display_user_urls($url_array);// give menu of optionsdisplay_user_menu();do_html_footer();?>

⌨️ 快捷键说明

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