| 
 Posted by Chung Leong on 07/18/06 23:31 
abracad_1999@yahoo.com wrote: 
> Is it possible to serve valid xhtml with php? 
> 
> xhtml requires the 1st line: 
>   <?xml version="1.0" encoding="iso-8859-1"?> 
> But php interprets the opening <? as a php statement. 
> 
> 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 ... ?' . '>';
 
[Back to original message] 
 |