in reply to CGI... uninitialized value... which variables?

You could use the Data::Dumper module.

use Data::Dumper; ... my ($a, $b, $c, $d); $a = 1; $b = 2; $d = 4; print Dumper([ $a, $b, $c, $d ]);

And check for variable with 'undef' value...

Replies are listed 'Best First'.
Re^2: CGI... uninitialized value... which variables?
by mrjcleaver (Initiate) on Sep 29, 2004 at 14:34 UTC
    Thanks... see above - am looking for a generic solution