Help for this page

Select Code to Download


  1. or download this
    elsif ($choice eq "update")            # update shopping cart
    {
        update_cart ($cart_ref,  param("quantity"));
        $page .= format_cart_html ($cart_ref, 1);
    }
    
  2. or download this
    sub update_cart
    {
    ...
    
        update ($cart_ref->{$item_id}->{qty} = $qty);
    }
    
  3. or download this
    sub update {
       # a bunch of code
    }