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