|
|
|
Your
Shopping Cart
Review Your Cart - To change the number of products you are purchasing,
change the number in the "Qty" box, then click "Update
Cart". To remove a product from your order, click "Empty
Cart". To continue shopping, click "Keep Shopping"
below.
Ready
to Checkout? - Click the "Checkout" button below to complete
your order.
|
if($add)
{
add_item($session,$sku,$product,1,$top_name,$bottom_name,$additional_1,$additional_2,$additional_3,$solder,$format);
}
if($update)
{
update_item($id,$session,$sku,$product,$quantity,$top_name,$bottom_name,$additional_1,$additional_2,$additional_3,$solder,$format);
}
if($remove)
{
delete_item($session,$id);
}
if($see)
{
$cart->see($session);
}
if($modify)
{
while (list($key, $val) = each($HTTP_GET_VARS))
{
$temp = strtr($key, "_", " ");
modify_quantity($session,$temp,$val);
}
}
if($clearcart)
{
clear_cart($session);
}
display_contents($session,1);//The 1 is to show the update qty
cart_total($session);
?>
|