Re: Strict and variables

2002-11-27 Thread Jenda Krynicky
From: "Fred Sahakian" <[EMAIL PROTECTED]> > 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 comma

Re: Strict and variables

2002-11-27 Thread Paul Johnson
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 mid

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
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?

Re: Strict and variables

2002-11-27 Thread david
Fred Sahakian wrote: > Hello, > > Im working a program and trying to get the pragma 'strict' to work. I > cant define a variable though, Im stuck, any ideas? > > my $changeaddress = $FORM{'changeaddress'}; > > > I keep getting an error on the $FORM > > > Using "my $FORM{'changeaddress'}" do

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
that was it, thanks to all! >>> "Jenda Krynicky" <[EMAIL PROTECTED]> 11/27/02 11:20AM >>> From: "Fred Sahakian" <[EMAIL PROTECTED]> > Ok, I was able to get rid of all those error but now the CGI is not > picking up the data from the form. > > > Am I using it correctly? When I get rid of the

Re: Strict and variables

2002-11-27 Thread Jenda Krynicky
From: "Fred Sahakian" <[EMAIL PROTECTED]> > Ok, I was able to get rid of all those error but now the CGI is not > picking up the data from the form. > > > Am I using it correctly? When I get rid of the "my %FORM;" it works > fine. > > my %FORM; > my $index = $FORM{'index'}; You want o

Re: Strict and variables

2002-11-27 Thread Fred Sahakian
Ok, I was able to get rid of all those error but now the CGI is not picking up the data from the form. Am I using it correctly? When I get rid of the "my %FORM;" it works fine. my %FORM; my $index = $FORM{'index'}; >>> Paul Johnson <[EMAIL PROTECTED]> 11/26/02 04:58PM >>> On Tue, Nov 26, 20

Re: Strict and variables

2002-11-26 Thread Paul Johnson
On Tue, Nov 26, 2002 at 04:40:14PM -0500, Fred Sahakian wrote: > Hello, > > Im working a program and trying to get the pragma 'strict' to work. I > cant define a variable though, Im stuck, any ideas? > > my $changeaddress = $FORM{'changeaddress'}; > > > I keep getting an error on the $FORM >

RE: Strict and variables

2002-11-26 Thread Fred Sahakian
Actually it is not, a bit higher up when I parse the data I have a line that reads: $FORM{name} = $value; Ive tried to fix it here as well but Ive had no luck, Im also getting into the problem with $value as well. thanks! >>> "Mark Anderson" <[EMAIL PROTECTED]> 11/26/02 04:52PM >>> Is th