Help for this page

Select Code to Download


  1. or download this
    <!-- /my-cgi.html the server SSI will run my CGI -->
    <!--#include virtual="/standard/header.html" -->
    <hr><h1>Check out my cgi!</h1>
    <!--#include virtual="/cgi-bin/my-cgi.pl" --><hr>
    <!--#include virtual="/standard/footer.html" -->
    
  2. or download this
    #!/usr/bin/perl -T
    # /cgi-bin/my-cgi.pl
    ...
    <p>Factoid of the day: <em>$factoid</em></p>
    _HTML_
    exit;