Re: line feed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux