in reply to Print Flat File to HTML

results.html is blank in the browser.
What does results.html look like in a text editor?

I suggest you start using Log::Log4perl and sprinkle your code with DEBUG statements. Does the split work as you expect?

use Data::Dumper; use Log::Log4perl qw(:easy); Log::Log4perl->easy_init($DEBUG); DEBUG "fields: " . Dumper(\@fields);
--
Andreas

Replies are listed 'Best First'.
Re^2: Print Flat File to HTML
by lakeTrout (Scribe) on Nov 20, 2007 at 07:04 UTC
    Howdy!

    If I run the script manually, the HTML prints just fine to my terminal. Is this a permission problem perhaps? I've set the permissions, but are they being overwritten somewhere I'm not aware? Pardon the novice questions and I much appreciate your help.

    Thanks!