>
> I'm trying to display a scalar [+ $var +], now the row in the database has
> HTML code in it but the HTML doesn't get rendered by the browser.
> What am I
> doing wrong? I read about < > and \< but it's not helping.
>
Either write
[+ local $escmode = 0; $var +]
then you have make sure your $var really contains valid html and everything
is correctly escaped, or if you for example want a <b> in your data, put
\<b\> in the database.
Gerald
P.S. escmode can also be set globaly for the whole file or inside your
httpd.conf