echo '<table border="1" width="800px">' . chr(10);

chr(10) should be line feed and chr(13) is a carriage return (aka "\r").  
Unless I got those mixed up.  But yes, you can do that.

Or you could even cheat and do:

echo '<table border="1" width="800px">' . "\n";

-TG

= = = Original message = = =

Double quotes:
    echo "<table border=\"1\" width=\"800px\">\n";

single quotes:
    echo '<table border="1" width="800px">';


cheers

Bruno Santos


___________________________________________________________
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

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

Reply via email to