Моля, опитайте да приложите следното и се надяваме, че ще видите къде е грешката. Тогава всеки орган ще се радва да помогне...
Начини за справяне с този проблем:
1.Recommended: Declare your variables. Or use isset() to check if they are declared before referencing them.
2.Set a custom error handler for E_NOTICE and redirect the messages away from the standard output (maybe to a log file). set_error_handler('myHandlerForMinorErrors', E_NOTICE | E_STRICT).
3.Disable E_NOTICE from reporting. A quick way to exclude just E_NOTICE is error_reporting( error_reporting() & ~E_NOTICE ).
4.Suppress the error with the @ operator.
Забележка:Силно се препоръчва да се приложи само точка 1.