in reply to Uninitialized value in concatenation
If you can, you might want to install the latest release of Perl, perl 5.10. It will tell you which variable isn't initialised:
$ perl -Mstrict -we 'my $x; print $x' Use of uninitialized value $x in print at -e line 1.
You should be using use strict too.
|
|---|