代码如下:<?php // // add_item.php: // Add an item to the shopping cart. // session_start(); if (session_is_registered('cart')) { session_register('cart'); }
require 'lib.inc.php'; // LoadProducts()
LoadProducts(); // Load products in $master_products_list
// Make $curr_product global $curr_product = array();
// Loop through all the products and pull up the product // that we are interested in
foreach ($master_products_list as $prod_id => $product) { if (trim($prod_id) == trim($_GET[id])) { $curr_product = $product; } }