in reply to
Print Flat File to HTML
isn't it that:
@fields=split(/ /,$entry);
should be somthing like
@fields=split(/\t/,$entry);
Comment on
Re: Print Flat File to HTML
Select
or
Download
Code
Replies are listed 'Best First'.
Re^2: Print Flat File to HTML
by
lakeTrout
(Scribe)
on Nov 20, 2007 at 07:17 UTC
Hi -- yes, that is just sloppy code. It should be /\t/ -- thanks!
[reply]
In Section
Seekers of Perl Wisdom