Manual php ->
error_reporting<?php
// Turn off all error reporting
// Report simple running errors
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
// Report all errors except E_NOTICE
// This is the default value set in php.ini
// Report all php errors (bitwise 63 may be used in php 3)
// Same as error_reporting(E_ALL);
?>
Update:
Jeżeli chcesz żeby błędy były wyświetlane tylko na localhoscie to zrób tak(wstaw na początku plików z kodem php):
<?php
if($_SERVER['REMOTE_ADDR'] == \"127.0.0.1\"){
}
else{
}
?>