Re: Warnings on the bottom of the pages on Linux

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

 



Mário Gamito wrote:
Hi,

A friend of mine told me that in Windows, PHP shows its warnings at the bottom of the pages.

Actually, i've never had thought about this issue before.
Better still... i even didn't know PHP for Windows had this behaviour.

In Linux they're shown at the top and now i'm in the mood to make PHP warnings appear at the bottom too. But...

... i've browsed php.ini and didn't found any way (obvious, at least) to do the same thing in Linux.

Already googled also, but nothing.

Is it possible to achieve this in Linux ?

Any help would be apreciated.

Warm regards.

Neither one is true. Error messages show up where they occur. HTML markup might influence where they visualy appear in the browser, but you can look at the source code to find out the exact place.


Example 1:

echo 'Hello ';
$i = 1 / 0;
echo 'World';

Example 2:

echo '<table><tr><td>First Row</td></tr>';
$i = 1 / 0;
echo '<tr><td>Second Row</td></tr><table>';

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