Em 22 Jan 2003 10:29:43 -0500
Farouk Khawaja <[EMAIL PROTECTED]> escreveu:
> Hi all,
>
> I'd like to do the following
>
> $req->{msg} = "some text <br> some more text";
>
> Unfortunately the '<br>' is not breaking. It's just getting
> displayed. The HTML output looks like '<br>'. Any ideas on how
> I can accomplish this... or if this is a dumb way to go about this.
>
> I've tried escaping like so "\<br\>" to no avail.
If you are using double quotes you have to use double escapes. If you
don't have any variable inside the value use single quotes and it should
work:
$req->{msg} = 'some text \<br> some more text';
And don't forget the [+ local $escmode=0; ... +] in the output block.
Regards,
Luiz Fernando B. Ribeiro
Engenho Solu��es para a Internet
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]