> Why there is no newline afer " <p>Hello World</p>" ?
> Is it a PHP bug or the tutorial should be updated?

The tutorial is fine.

The sample code mentioned:

<html>
 <head>
  <title>PHP Test</title>
 </head>
 <body>
 <?php echo '<p>Hello World</p>'; ?>
</body>
</html> 

Contains a line break after the <p>Hello World</p> is echoed .
 
Check your code, if you don't have that line break, PHP is not going to create 
it for you.

Brady

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

Reply via email to