Help for this page

Select Code to Download


  1. or download this
    # Create the cart
    my $cart = new Cart( type => 'DBI', id => $foo ); 
    ...
    }
    $cart->save;
    print "Cart's new total is: ", $cart->total_cost();
    
  2. or download this
    package Cart;
    
    ...
        my ( $self, $cart ) = @_;
        # ... save to filesystem ...
    }