I used mysqli to connect to the database in my application. It worked fine for several days, and suddenly it started showing the following error:
Fatal error: class 'mysqli' not found
The line I used to connect to the database is:
$link = new mysqli('localhost', 'uname', 'password', 'scripts');
Could you tell me what could have gone wrong?
php mysqli
abcdefgh
source share