On Thu, 2007-10-04 at 22:38 -0700, tbt wrote:
> I'm a newbie to php and i would like to know a way of viewing runtime errors
> on the browser. Currently when an error occurs nothing is displayed on the
> browser. Is there any way of viewing all error messages on the browser
> itself.
> 

You can up the error_reporting level in your php.ini, or you can simply
put the following line at the top of your script:

ini_set("error_reporting", "E_ALL");

or for an even stricter setting:

ini_set("error_reporting", "E_STRICT");

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to