Help for this page

Select Code to Download


  1. or download this
    while (@table) {
        $new_lot[@new_lot] = shift @table;
        $cat_one[@cat_one] = shift @table;
        $A_services[@A_services] = shift @table;
    }
    
  2. or download this
    while (@table) {
        push @new_lot,    shift @table;
        push @cat_one,    shift @table;
        push @A_services, shift @table;
    }