Reputation: 1
I'm getting these errors when loggin in on the site:
PHP Notice: Undefined index: name in C:\xampp\htdocs\ebuy\catalog\controller\module\boss_megamenu.php on line 173
PHP Notice: Undefined index: image in C:\xampp\htdocs\ebuy\catalog\controller\module\boss_megamenu.php on line 177
PHP Notice: Undefined index: category_id in C:\xampp\htdocs\ebuy\catalog\controller\module\boss_megamenu.php on line 178
Does anyone know how to solve this issue?
Upvotes: 0
Views: 1888
Reputation: 244
Use either
@$variable
- Only use this if it doesn't matter if the variable is setisset($variable){ // some code }
- use this if the variable has to be setUpvotes: 1