On Wed, Nov 27, 2002 at 03:28:52PM -0500, Fred Sahakian wrote:
> Im able to get my script running under strict; now, but I keep seeing
> this new error:
> 
> "Use of uninitialized value in concatenation (.) or string at
> volunteer.cgi line 333"
> 
> What does this mean?
> 
> Line 333 is in the middle of a print command with a bunch of HTML in it.
> 
> Any ideas?

You have a variable in the print statement to which you need to assign a
value.

my $var:
print "some html ... $var ... more html";

-- 
Paul Johnson - [EMAIL PROTECTED]
http://www.pjcj.net

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to