Quote:
Originally Posted by Paul M
How about fixing the error ?
|
Great answer man...but if you read the problem you might have known what's going on...
Quote:
Originally Posted by calorie
Code:
// all but notices
error_reporting(E_ALL & ~E_NOTICE);
// all but warnings
error_reporting(E_ALL & ~E_WARNING);
// all but notices and warnings
error_reporting(E_ALL & ~(E_NOTICE | E_WARNING));
|
Thanks Calorie!