Thread: PHP Question...
View Single Post
Old 01-28-2004, 10:55 AM  
galleryseek
Confirmed User
 
Industry Role:
Join Date: Mar 2002
Posts: 8,234
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...
galleryseek is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote