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

📄 show_cat.php

📁 《PHP和MySQL Web开发》(第三版) Source
💻 PHP
字号:
<?php  include ('book_sc_fns.php');  // The shopping cart needs sessions, so start one  session_start();  $catid = $_GET['catid'];  $name = get_category_name($catid);   do_html_header($name);  // get the book info out from db  $book_array = get_books($catid);  display_books($book_array);   // if logged in as admin, show add, delete book links  if(isset($_SESSION['admin_user']))  {    display_button('index.php', 'continue', 'Continue Shopping');    display_button('admin.php', 'admin-menu', 'Admin Menu');    display_button("edit_category_form.php?catid=$catid",      'edit-category', 'Edit Category');  }  else    display_button('index.php', 'continue-shopping', 'Continue Shopping');    do_html_footer();?>

⌨️ 快捷键说明

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