in reply to Re: Re: Help with recurring "uninitialized variable" problem.
in thread Help with recurring "uninitialized variable" problem.
How are you getting your values in @ARGV? I think one of more of them is undef. As a quick test, try adding the following line before the while loop. If it suppresses the warnings, you have undef values there.
@ARGV = grep defined() => @ARGV;Cheers,
Ovid
New address of my CGI Course.
|
|---|