in reply to Re: Passing a lot of form values
in thread Passing a lot of form values

my $qty[$countrows] = $incoming{'qty$countrows'};
?? did you really mean to do the my within the while? Also I don't see $countrows being incremented. How about declaring the arrays outside of the while loop?
my (@qty, @type,@equip,@dept); #etc. while ($countrows <= $myrowcounter) { $qty[$countrows] = $incoming{'qty$countrows'}; $type[$countrows] = $incoming{'type$countrows'}; $equip[$countrows] = $incoming{'equip$countrows'}; $dept[$countrows] = $incoming{'dept$countrows'}; #etc. $countrows++; }
Not sure if there was anything else wrong but that was my 1st thought. Hope that helps. -- Carmen