Help for this page

Select Code to Download


  1. or download this
    
    my @newfields = ();
    ...
      $nf_row_data{FIELD} = shift @newfields;
      push(@field_data, \%nf_row_data);
    }
    
  2. or download this
    my @newfields = ();
    foreach $field (@fields){
    ...
      $nf_row_data{FIELD} = $_;
      push(@field_data, \%nf_row_data);
    }