📄 checkout.php
字号:
<?php //include our function set include ('book_sc_fns.php'); // The shopping cart needs sessions, so start one session_start(); do_html_header('Checkout'); if($_SESSION['cart']&&array_count_values($_SESSION['cart'])) { display_cart($_SESSION['cart'], false, 0); display_checkout_form(); } else echo '<p>There are no items in your cart</p>'; display_button('show_cart.php', 'continue-shopping', 'Continue Shopping'); do_html_footer();?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -