You somehow have set error_reporting to a higher value than usual.
All this means is that there is a variable being used before it was initialised (bad programming. Why? because if you don't initialise a var, it could theoretically contain anything, so it can't be trusted).
You can set this in php.ini or at runtime. Check out the manual about it.