Idiot PHP Reminder of the Day
May 3rd, 2005
Don’t use require_once within functions. Especially when you iterate multiple times over that function. Use require or include instead, because the successive calls won’t import the additional code any more.