in reply to Re: Re: Checking for empty CGI params; this isn't working
in thread Checking for empty CGI params; this isn't working
You may want to take that out of the question by assigning each to a scalar value. Then this works:
my $tele = ''; my $mobile = ''; # uncomment to pass # $tele = 'hello'; if( length($tele) || length($mobile) ){ print 'At least one is OK'; } else { print 'both are empty'; }
|
---|