RE: data structures one more try

2003-03-05 Thread David Gilden
Rob and all the rest reading this, Here's what fixed the problem. The check boxes are only sent to CGI.pm if checked, while all the input fields are sent regardless. So @bag_quantity was filled with '0's ... get rid of 'o's @bag_quantity = grep(/[^0]/, @bag_quantity); ...this now seems to

RE: data structures one more try

2003-03-05 Thread David Gilden
Rob, Good call! > You can print out the data in @bags and @bag_quantity > using Data::Dumper.. > print Dumper [EMAIL PROTECTED]; Check this out, 'order' second and third bag in the first row. and hit the CGI and see the results,