in reply to Re: CGI.pm accepting a 0 as a value, not null
in thread CGI.pm accepting a 0 as a value, not null

got it, one lined
my $first = (defined param('first'))? param('first'):'notentered';
I used to have Defined in my old code! dunno wtf i didn't think of using it also.
thanks!