Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use CGI::Carp qw(fatalsToBrowser);
    use strict;
    ...
    print header(-type => 'text/html',
                    -content_length => $http_body_length );
    print $http_body;
    
  2. or download this
    #!/usr/bin/perl -w
    use CGI::Carp qw(fatalsToBrowser);
    use strict;
    ...
                    -content_length => $http_body_length,
                    -nph => 1);
    print $http_body;
    
  3. or download this
    print header(-type => 'text/html',
                    -content_length => $http_body_length,
                    -connection => 'Keep-Alive',
                    -nph => 1);