Help for this page
use CGI qw/:standard/; my $q = new CGI; my $choice = param('choice') || 1;
my $choice = param('choice') // 1;
my $choice = param('choice'); $choice = 1 unless defined $choice;