error_reporting(E_ALL) reports nothing

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
neridaj
Forum Commoner
Posts: 40
Joined: Fri Jan 05, 2007 9:55 pm

error_reporting(E_ALL) reports nothing

Post by neridaj »

Hey,

I'm just trying to get some errors displayed so I can figure out why things aren't working, any help besides a blank page would be appreciated.

Thanks,

Jason
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: error_reporting(E_ALL) reports nothing

Post by requinix »

You want to display errors, right?

Code: Select all

ini_set("display_errors", 1);
Post Reply