in reply to Print Flat File to HTML

isn't it that: @fields=split(/    /,$entry);
should be somthing like @fields=split(/\t/,$entry);

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!