- or download this
my $query = CGI->new();
if ($query->param( "button" ) eq 'first') { display_first( $query ) }
- or download this
my $region = $query->param( "region" ) || 42;
my $button = $query->param( "button" ) || '';
if ($button eq 'first') { # '' gives no warning
- or download this
my $handler = $handlers{$query->param( "button" )};