in reply to Displaying Web Table Data Properly
The elements of the array @$row appear to have newlines in them. These need to be chomped.print join(',', @$row), "\n";
foreach my $element (@$row) { chomp($element); ### remove the newline print "$element,"; ### print it with a comma } print "\n";
|
|---|