Help for this page

Select Code to Download


  1. or download this
    use strict;
  2. or download this
    use CGI qw/:standard/;
  3. or download this
    my @parameter_list = param();
  4. or download this
    my $text = param('textbox_name');
  5. or download this
    my @selection = param('select_list_name');
  6. or download this
    sub show_context {
      if (wantarray()) {
    ...
        print "Boolean (scalar) context\n";
      }
    }