Page 1 of 1

How do I get the browser to display my errors

Posted: Sat Dec 06, 2003 12:57 am
by idesign_media2
I'm a novice PHP programer. When i code at work on a pc IE displays my errors which helps me troubleshoot my code. But when i code at home on my mac IE doesn't display my errors.

Is there some type of configuration that needs to be made in order to display my errors?

Thanks in advance for you help.

Posted: Sat Dec 06, 2003 6:44 pm
by DuFF
Try adding

Code: Select all

error_reporting (E_ALL);
to the top of the page you want the errors to appear on.