RE: Weird html - No "real" <cr>

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

 



> Hi
> 
> Yes, but I assume that
> 
> echo "<hr>Kontroll rad i textfil:$rowsInTextFile av 
> $totalRowsInTextFile<br>";
> 
> would render a <newline> ?
> 
> /G

Echo does not automatically add a newline, you would have to use \n to
get newlines with the echo statement:

echo "<hr>Kontroll rad i textfil:$rowsInTextFile av >
$totalRowsInTextFile<br>";

Will display the line break in the webpage as expected, but to get the
source code displayed to have the line break you would need to use:

echo "<hr>Kontroll rad i textfil:$rowsInTextFile av >
$totalRowsInTextFile<br>\n";

Brady

-- 
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