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

📄 show_book.php

📁 《PHP和MySQL Web开发》(第三版) Source
💻 PHP
字号:
<?php  include ('book_sc_fns.php');  // The shopping cart needs sessions, so start one  session_start();  $isbn = $_GET['isbn'];  // get this book out of database  $book = get_book_details($isbn);  do_html_header($book['title']);  display_book_details($book);  // set url for "continue button"  $target = 'index.php';  if($book['catid'])  {    $target = 'show_cat.php?catid='.$book['catid'];  }  // if logged in as admin, show edit book links  if( check_admin_user() )  {    display_button("edit_book_form.php?isbn=$isbn", 'edit-item', 'Edit Item');    display_button('admin.php', 'admin-menu', 'Admin Menu');    display_button($target, 'continue', 'Continue');  }  else  {    display_button("show_cart.php?new=$isbn", 'add-to-cart', 'Add '                   .$book['title'].' To My Shopping Cart');     display_button($target, 'continue-shopping', 'Continue Shopping');  }    do_html_footer();?>

⌨️ 快捷键说明

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