Help for this page

Select Code to Download


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