dilip
answered Jul 19 '21 00:00
1. make error_reporting is off at php.ini at your system
find the php.ini in your system
and find for the word error_reporting and set it to 0
2. or do it by error_reporting function at run time
disable the error reporting , use error_reporting() function like below
error_reporting(0);