in reply to HTML::Template Problem

It seems that your question has been answered but I thought I'd leave you with my biggest HTML::Template suggestion: put your HTML in lowercase and uppercase your HTML::Template tags, for example:
<p><b>This is some text:</b> <TMPL_VAR NAME=MY_VAR></p>
This makes it stand out a lot more, helping to notice tags amongst all the HTML.

gav^

Replies are listed 'Best First'.
Re: Re: HTML::Template Problem
by tomhukins (Curate) on Mar 27, 2002 at 14:58 UTC

    I'd go one step further and write HTML::Template tags as comments:

    Hello, <!-- TMPL_VAR NAME="name" -->

    HTML::Template knows how to process these comment-style tags. The advantage of this is that you can run your templates through an HTML validator without any processing because the validator treats the HTML:::Template tags as HTML comments.