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