Help for this page

Select Code to Download


  1. or download this
        # Good
        $CGI::DISABLE_UPLOADS = 0;
    ...
        # Bad
        my $q = CGI->new;
        $CGI::DISABLE_UPLOADS = 0;
    
  2. or download this
    {
        no strict 'refs';
    ...
            $length += length($_);
        }
    }
    
  3. or download this
    #!D:/perl/bin/perl.exe -wT
    use CGI qw/ :standard /;
    ...
              end_html;
        exit;
    }