
February 10th, 2000, 08:34 PM
|
|
Apprentice Deity
|
|
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237

Time spent in forums: 4 m 8 sec
Reputation Power: 17
|
|
|
You can set error reporting within a script using the error_reporting() function. It uses a bit mask for determining the types of errors/warnings returned. You want to turn off e_notice(mask 8). The remaining values are e_error(mask 1), e_warning(2), e_parse(4), e_core_error(16) and e_core_warning(32).
So you should use:
error_reporting(55);
That should do the trick.
|