Help for this page

Select Code to Download


  1. or download this
    package development;
    
    ...
    my $forms = new CGI;
    
    print $forms->param("elementName");
    
  2. or download this
    use strict;
    use warnings;
    use CGI;
    
    my $forms = new CGI;
    
  3. or download this
    use strict;
    use warnings;
    
    $main::forms->param("formElement");