Simply lower your error reporting level. If you do not have access to your
php.ini (not everyone does), then can you can amend this directive in either
.htaccess or even on a per script basis by using the error_reporting()
function like so.

error_reporting(2039);

(Equivalent to E_ALL & ~E_NOTICE)

-- 
Jon Kriek
http://phpfreaks.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to