Help for this page

Select Code to Download


  1. or download this
    $csv->print(\*OUTPUT, \@fields);
    
  2. or download this
    my @output_cols = qw( name state location school birth birthplace );
    
    ...
    
       $csv_out->print($fh_out, [ @$row{@output_cols} ]);
    }