Posted by Mike Roetgers on 04/02/07 12:08
andy.z@blueyonder.com schrieb:
> If I set a varaible as
>
> $EOL = "\r\n"
>
> But then want to echo that to a HTML page to see the above string
> i.e. \r\n
>
> by doing: echo($EOL);
>
> How do I do it?
>
> I've tried quotemeta, addslashes and htmlspecialchar
> but can't seem to work it out.
>
> thanks
>
> Andy
It should work with single quotes:
$EOL = '\r\n';
echo $EOL;
That should output:
\r\n
Navigation:
[Reply to this message]
|