Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    #$content_type is the /mime/ type
    my $content_type = 'text/html';
    print "Content-type: $content_type\n\n";
    
  2. or download this
    use strict;
    use warnings;
    ...
    print $CGI_obj->start_html;
    print $web_page;
    print $CGI_obj->end_html;