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

📄 add_bms.php

📁 《PHP和MySQL Web开发》(第三版) Source
💻 PHP
字号:
<?php require_once('bookmark_fns.php'); session_start();   //create short variable name  $new_url = $_POST['new_url'];   do_html_header('Adding bookmarks');    try  {    check_valid_user();    if (!filled_out($_POST))    {      throw new Exception('Form not completely filled out.');        }    // check URL format    if (strstr($new_url, 'http://')===false)       $new_url = 'http://'.$new_url;    // check URL is valid    if (!(@fopen($new_url, 'r')))      throw new Exception('Not a valid URL.');    // try to add bm    add_bm($new_url);    echo 'Bookmark added.';    // get the bookmarks this user has saved    if ($url_array = get_user_urls($_SESSION['valid_user']))      display_user_urls($url_array);  }  catch (Exception $e)  {    echo $e->getMessage();  }  display_user_menu();   do_html_footer();?>

⌨️ 快捷键说明

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