while (@table) { $new_lot[@new_lot] = shift @table; $cat_one[@cat_one] = shift @table; $A_services[@A_services] = shift @table; }
May I suggest push instead?
while (@table) { push @new_lot, shift @table; push @cat_one, shift @table; push @A_services, shift @table; }
In reply to Re^2: Help Me in following code ::
by chromatic
in thread Help Me in following code ::
by gskoli
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |