Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wT
    
    ...
    # resource limits
    $CGI::DISABLE_UPLOADS = 1;
    $CGI::POST_MAX = 1024;
    
  2. or download this
    print footer;
    
  3. or download this
    sub check_value_combinations {
    
    ...
    
    break;
    }
    
  4. or download this
    
    BEGIN {
    ...
           die("Unable to open mycgi-log: $!\n");
         carpout(LOG);
       }
    
  5. or download this
    print "<form><input type=\"hidden\" name=\"confirmed\" value=\"yes\">"
    +;
        print "<input type=\"hidden\" name=\"name\" value=\"$name\">
        <input type=\"hidden\" name=\"surname\" value=\"$company\">
    
  6. or download this
    $name = cgi_get('name') and $name =~ s/'`-\w\s//go; # filter name
    
  7. or download this
    use CGI qw/:standard/;
    use DBI;
    ...
    # resource limits
    $CGI::DISABLE_UPLOADS = 1;
    $CGI::POST_MAX = 1024;