So I am a beginner in php and I was reading through a lot of posts suggesting how to remove the undefined index problem in php.
Mostly there are two methods
- change the setting in php_ini
- have an
isset()
condition.
So if I choose method 1 and uploaded my website to the server,when other users click on it,will the UNDEFINED INDEX warning shows up ?
I mean since we are only changing our own setting so it will still display when others click on it right ? Really appreciate if someone can help.