Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End undefined index: (problem) Re: undefined index: (problem)

#72582
ddliu
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.