Thread: PHP Question...
View Single Post
Old 01-28-2004, 10:50 AM  
JSA Matt
So Fucking Banned
 
Join Date: Aug 2003
Location: San Diego, CA
Posts: 5,464
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');
JSA Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote