in reply to Re: Advise, Should I...
in thread Should I add shopping cart items to session table or create new table?
Then to retreive it, do a foreach...$sess_ref->attr("sco_$item_num",$quantity);
Something like that.foreach my $key (keys (%{$sess_ref})) { if ($key =~ /^sco_/) { # ok this is a Shopping Cart Ordered Item, added to the list } }
|
|---|