in reply to Re: Re: escapeHTML
in thread escapeHTML

You might have better luck by letting HTML::Template do the escaping for you. In your template, write
<TMPL_LOOP NAME="TMPL_LOOP"> <TMPL_VAR NAME="TRY" ESCAPE=HTML> </TMPL_LOOP>
and the right thing will happen.

Replies are listed 'Best First'.
Re: Re: Re: Re: escapeHTML
by primus (Scribe) on Jan 08, 2003 at 05:10 UTC
    wow thanks, that ESCAPE = HTML did the trick!