Help for this page

Select Code to Download


  1. or download this
    my @sorted = qw(
        02_org_name
    ...
        defined $cgi->param($_) and $cgi->param($_)
           or print "You must define a $_.<br>" and ''
    } @sorted;
    
  2. or download this
    my @sorted = qw(
        02_org_name
    ...
    } @sorted;
    
    @missing and print "You must define these fields: ",join(', ', @missin
    +g),".<br>\n";
    
  3. or download this
        if (defined $cgi->param("$_")) {
    
  4. or download this
        print "You must define a $_." . "<br>";
    
        print "You must define a $_.<br>";  # less noise
    
  5. or download this
    print <<END_TMPL;