Help for this page

Select Code to Download


  1. or download this
    <html>
    <head>
    ...
    <b><TMPL_VAR NAME="THAT_FAMOUS_STRING"></b>
    </body>
    </html>
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print "Content-type: text/html\n\n";
    
    print $template->output;
    
  3. or download this
    Content-type: text/html
    
    ...
    <b>Hello, World!</b>
    </body>
    </html>
    
  4. or download this
    #!/usr/bin/perl -w
    use strict;
    use lib qw(/home/kmiller/lib/);
    use HTML::Template;