Posted by Rik on 07/18/06 23:58
Chung Leong wrote:
> Chung Leong wrote:
>> abracad_1999@yahoo.com wrote:
>>> If I try to echo this in PHP:
>>> <?php
>>> echo '<?xml version="1.0" encoding="iso-8859-1"?>';
>>> The closing ?> of the xhtml bit is interpreted as closing the php.
>>> Thus:
>>> '; ?>
>>> is displayed in the browser.
>>> Any way around this?
>>
>> echo '<?xml ... ?' . '>';
>
> Wait a minute. That's not supposed to be necessary. PHP knows when
> it's inside a string.
You are right.
<?php
echo '<?xml version="1.0" encoding="iso-8859-1"?>';
?>
Works perfectly here (tested with shorttags on which are usually off).
Grtz,
--
Rik Wasmus
[Back to original message]
|