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
I'm kinda a stupid moronic idiot, but it seems to me you're calling a variable out of its scope. Try declaring it globally. If it doesn't work use sarcasm on me -Original Message- From: t [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:26 PM To: [EMAIL PROTECTED] Subject