in reply to Re^2: text::csv output help
in thread text::csv output help
No, the documentation is correct.
and$csv->print($fh, $_) for @rows;
make sense, but not$csv->print($fh, \@row);
$csv->print($fh, $_) for \@rows;
I imagine that your @rows didn't actually contain rows.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: text::csv output help
by dmn001 (Initiate) on Dec 01, 2010 at 00:03 UTC | |
by ikegami (Patriarch) on Dec 01, 2010 at 02:57 UTC | |
|
Re^4: text::csv output help
by dmn001 (Initiate) on Dec 01, 2010 at 00:45 UTC | |
by Tux (Canon) on Dec 01, 2010 at 07:39 UTC |