Not showing errors in Firefox

A

Anonymous

Guest
Hello guys,
I am new in PHP and linux, so when i installed php on my new linux os I am not getting any error logs when I echo my code to //localhost/ . When I used WAMP on windows and Chrome I got the error messages like:
Warning: A non-numeric value encountered in C:\ ...\array_filter.php on line 5
But now if I do a typo or so I get just a blank screen.

How can I view this error logs?

Thank you,
Chameleon
 
How can I view this error logs?
PHP info

Code:
// Put this at the top your first script
error_reporting(E_ALL);
display_errors = on;

Note: Firefox or any other browser has no control over displaying errors in your PHP scripts
 
Back
Top