I update my xampp and i face this errors Notice: Undefined variable: session in
I try to php.ini but no solution i have more than 30 scipts in my localhost and i want to ignore this errors.
How can i do this
Asked
Active
Viewed 79 times
-1

Mr KaMaL
- 41
- 7
-
http://stackoverflow.com/questions/4261133/php-notice-undefined-variable-and-notice-undefined-index – Randomius Apr 29 '15 at 16:26
-
But i want to include code in php.ini so i not have to declare all time – Mr KaMaL Apr 29 '15 at 16:29
1 Answers
0
Put this at the end of your php.ini
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT
Make that is right php.ini

Randomius
- 252
- 1
- 2
- 12