in reply to Data::Table showing error
Pass a second argument of 0 to tell the module not to use headers:
#!/usr/bin/perl use strict; use warnings; use Data::Table; my $t = Data::Table::fromCSV( "ravi.csv", 0 ); # Read a csv file + into a table object (no headers) print $t->csv; # Display a 'portrait' HTML TABLE + on web.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Data::Table showing error
by ravi45722 (Pilgrim) on Oct 27, 2015 at 05:26 UTC |