in addition to what everyone else has pointed out, HTML::Template has the advantage of being relatively language independent. the template syntax isn't tied to perl, and there are implementations written in python, php, java, and probably other languages. so if you ever decide to switch languages for the backend, you don't have to port the templates. i've successfully converted apps from perl to python and vice versa without touching the template files.

i've also used HTML::Template to make 'skinnable', or highly customizable web apps. you just throw up a quick admin interface that lets users (or admin users at least) edit the template files that generate content directly through the browser. i have, eg, a quiz/survey/poll engine that uses HTML::Template. it's designed to plug into any site or web application that we need to plug it into. using templates lets us easily customize each instance to fit in graphically.

and HTML::Template's ability to hook into the CGI and DBI modules, when used properly, reduces a lot of the extra overhead.


In reply to Re: HTML::Template vs. CGI.pm by thraxil
in thread HTML::Template vs. CGI.pm by hacker

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.