+ 1
Undefined index
I got undefined index error on my php code, how to fix it
2 Respostas
+ 5
Post your code here ...
+ 3
Open php. ini file in your favourite editor and search for text “error_reporting” the default value is E_ALL. You can change it to E_ALL & ~E_NOTICE. Now your PHP compiler will show all errors except 'Notice.
All the best!