##
$VAR1 = [ {
'quantity' => 1,
'name' => 'abc1'
},
{
'quantity' => 2,
'name' => 'abc2'
}
];
####
sub display_cart {
my ($cgi, $session) = @_;
# getting the cart's contents
my $cart = $session->param("CART") || [];
my $total_price = 0;
my $RV = q~Title Price ~;
if ( $cart ) {
for my $product ( @{$cart} ) {
$total_price += $product->{price};
$RV = qq~
$product->{name}
$product->{price}
~;
}