Error while executing in php 5.3.6

Hi,
The code that executed in php 5.2.6 is not executing in php 5.3.6.I am getting an error “Undefined variable”,“Undefined offset”.Please help me to fix this problem.

Can you post the part of the code that is generating the error?

I think they are called Notices. If you have only few problems then you have to define the variables before you use or if you have check if the variable is already defined or not with isset() function.

If you have lots of such notices, then you may want to switch off the Notices either by changing the error reporting from ini or with the function error_reporting(). See the examples and descriptions in php.ini file of your local:


; error_reporting
;   Default Value: E_ALL & ~E_NOTICE
;   Development Value: E_ALL | E_STRICT
;   Production Value: E_ALL & ~E_DEPRECATED