Re: uninitialized values

2002-09-12 Thread david
T wrote: > Hello:) > > in my script my values come from my html form. I define them with: > > my $OptOut = $q->param( "OptOut" ); if OptOut isn't passed it, you get under. the following should get rid of the warning: my $OptOut = $q->param('OptOut') || ''; > > BUT, when i try to get them t

RE: uninitialized values

2002-09-11 Thread Camilo Gonzalez
EMAIL PROTECTED] Subject: uninitialized values Hello:) in my script my values come from my html form. I define them with: my $OptOut = $q->param( "OptOut" ); BUT, when i try to get them to print in the e-mail, i get the uninitialized value error "Use of uninitialized value at /cg

uninitialized values

2002-09-11 Thread t
Hello:) in my script my values come from my html form. I define them with: my $OptOut = $q->param( "OptOut" ); BUT, when i try to get them to print in the e-mail, i get the uninitialized value error "Use of uninitialized value at /cgi-bin/newreg.cgi line 316." (thE FOLLOWING STARTS WITH line