my $boolean = $cgi->param('boolean') || 0; # or better: my $boolean = $cgi->param('boolean') ? 1 : 0; # etc