Help for this page

Select Code to Download


  1. or download this
    #/user/bin/perl -wT
    use strict;
    use CGI ':all';
    ...
          start_html('Test'),
          'Hello, World!', 
          end_html();
    
  2. or download this
    <HTML>
    <HEAD>
    <TITLE>Test</TITLE>
    ...
      </form>
    </BODY>
    </HTML>
    
  3. or download this
    > perl -wT hello.cgi ''
    Content-Type: text/html
    ...
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
    <HTML><HEAD><TITLE>Test</TITLE>
    </HEAD><BODY>Hello, World!</BODY></HTML>