Quote:
Originally posted by JSA Matt
Try putting this at the top of your script(s)
PHP Code:
@ini_set('display_errors', '1');
error_reporting(E_ERROR | E_WARNING | E_PARSE);
That will limit the type of errors it displays... you can also do this one to report ALL errors.
PHP Code:
error_reporting(E_ALL);
If you have access to the php.ini it is better to change display_errors to '1' instead of doing @ini_set('display_errors', '1');
|
thanks for the effort man, but its STILL doing the same thing

i tried both of them...