Home › Forums › Back End › undefined index: (problem) › Re: undefined index: (problem)
June 18, 2011 at 10:03 am
#72582
Member
@dynamyc, I don’t think such notice is an error in the world of PHP, it’s just a notice.
The simplest way is to ignore NOTICE in PHP:
error_reporting(E_ALL^E_NOTICE);
However, if you need to make it strict, follow @SgtLegend’s way.