Re: [PHP] disable "notice" errors

2003-08-29 Thread Ernest E Vogelsinger
At 20:56 29.08.2002, fatih olcer said: [snip] >how to disable "notice error" output > > >i have set "error_reporting = 2039" (in PHP.ini); >but it doesnt work.i still get "notice :Undefined index".. [snip] as a third

Re: [PHP] disable "notice" errors

2003-08-29 Thread Pete James
You have two solutions, one of which is better. A. Fix the problem, and define your indexes. B. Set error_reporting = E_ALL & ~E_NOTICE I'd strongly recommend doing A before B, as PHP doesn't carp for the sake of carping. fatih olcer wrote: how to disable "notice error" output i have set "er