Posted by tg-php on 03/04/05 16:55
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.
Navigation:
[Reply to this message]
|