in reply to Methods to debug CGI issues

Hai,
Since u didnt see any errors in errorlog, its always good to trace the code.
So use the following way
use Data::Dumper; print STDERR Dumper($variable);

The Module Data::Dumper can be downloaded from Cpan. This is the easiest way to debug i think, and what we follow also.
Please excuse for any typhos...
--prasanna.k

Replies are listed 'Best First'.
Re^2: Methods to debug CGI issues
by chb (Deacon) on Apr 20, 2005 at 07:16 UTC
    Usually no need to download from CPAN, AFAIK Data::Dumper is a core module included in every perl installation.