It's not an error that you are seeing, but a warning.
You can dissable the warnings and erroros in your php.ini file (have a look at the error_reporting = option)
To turn error reporting off for a single document, include this line: error_reporting(0); at the top of the php page that is giving you the warning.
__________________
Never execute code written on a Friday or a Monday.
|