A shopping cart using sessions

Your shopping cart

Cart Total:
$0.00

Product list

SuperWidget
$19.99 Add Item
MegaWidget
$29.99 Add Item
WonderWidget
$39.99 Add Item
 

CODE FOLLOWS

<?php
// Include the header file (assumed to contain common HTML and styles)
include('includes/header.php');
?>

<?php
session_start
();

class 
Product
{
    private 
$productId;
    private 
$productName;
    private 
$price;

    public function 
__construct$productId$productName$price )
    {
        
$this->productId $productId;
        
$this->productName $productName;
        
$this->price $price;
    }

    public function 
getId()
    {
        return 
$this->productId;
    }

    public function 
getName()
    {
        return 
$this->productName;
    }

    public function 
getPrice()
    {
        return 
$this->price;
    }

}

$products = array
(
    
=> new Product1"SuperWidget"19.99 ),
    
=> new Product2"MegaWidget"29.99 ),
    
=> new Product3"WonderWidget"39.99 )
);

if ( !isset( 
$_SESSION["cart"] ) ) $_SESSION["cart"] = array();

if ( isset( 
$_GET["action"] ) and $_GET["action"] == "addItem" )
{
    
addItem();
}
elseif ( isset( 
$_GET["action"] ) and $_GET["action"] == "removeItem" )
{
    
removeItem();
}
else
{
    
displayCart();
}

function 
addItem()
{
    global 
$products;
    if ( isset( 
$_GET["productId"] ) and $_GET["productId"] >= and $_GET["productId"] <= )
    {
        
$productId = (int) $_GET["productId"];

        if ( !isset( 
$_SESSION["cart"][$productId] ) )
        {
            
$_SESSION["cart"][$productId] = $products[$productId];
        }
    }

  
session_write_close();
  
header"Location: shopping_cart.php" );
}

function 
removeItem()
{
    global 
$products;
    if ( isset( 
$_GET["productId"] ) and $_GET["productId"] >= and $_GET["productId"] <= )
    {
        
$productId = (int) $_GET["productId"];

        if ( isset( 
$_SESSION["cart"][$productId] ) )
        {
            unset( 
$_SESSION["cart"][$productId] );
        }
    }

  
session_write_close();
  
header"Location: shopping_cart.php" );
}

function 
displayCart()
{
global 
$products;
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <title>A shopping cart using sessions</title>
    <link rel="stylesheet" type="text/css" href="css/common.css" />
</head>
<body>

<h1>Your shopping cart</h1>

<dl>

    <?php

    $totalPrice 
0;
    foreach ( 
$_SESSION["cart"] as $product )
    {
    
$totalPrice += $product->getPrice();
    
?>
    <dt><?php echo $product->getName() ?></dt>
    <dd>$<?php echo number_format$product->getPrice(), ?>

        <a href="shopping_cart.php?action=removeItem&productId=<?php echo $product->getId() ?>">Remove</a>
    </dd>

    <?php ?>

    <dt>Cart Total:</dt>
    <dd><strong>$<?php echo number_format$totalPrice?></strong></dd>

</dl>

<h1>Product list</h1>

<dl>
    <?php foreach ( $products as $product ) { ?>
        <dt><?php echo $product->getName() ?></dt>
        <dd>$<?php echo number_format$product->getPrice(), ?>
            <a href="shopping_cart.php?action=addItem&productId=<?php echo
            
$product->getId() ?>">Add Item</a></dd>
    <?php ?>
</dl>

<?php
}
?>

</body>
</html>

<?php
// Include the footer file (assumed to contain closing HTML and scripts)
include('includes/footer.php');
?>