Help for this page

Select Code to Download


  1. or download this
    my @column_labels = @{$csv->getline ($release_fh)};
    $csv->bind_columns (\@value{@column_labels});
    while ($csv->getline ($release_fh)) {
        :
        }
    
  2. or download this
    \@value{@{$csv->column_names ($csv->getline ($release_fh))}}
    
     =>
    
    \@value{@{$csv->getline ($release_fh)}};