On Fri, 3 Jan 2003, Tularis wrote:

> I must be going blind... can't believe I actually missed that :S
> 
> <![CDATA[
>   <html>
>    <?php
>     header("Content-type: plain/html");
>     // Broken, note the echo <html> tag above
>    ?>
> ]]>
> 
> Is this ok with everybody?

No, you should remove the indentation:

<![CDATA[
<html>
<?php
  header("Content-type: plain/html");
  // Broken, note the echo <html> tag above
?>
]]>

Derick

-- 

-------------------------------------------------------------------------
 Derick Rethans                                 http://derickrethans.nl/ 
 PHP Magazine - PHP Magazine for Professionals       http://php-mag.net/
-------------------------------------------------------------------------


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to