How to solve "Fatal error: Class 'MySQLi' not found"? How to solve "Fatal error: Class 'MySQLi' not found"? php php

How to solve "Fatal error: Class 'MySQLi' not found"?


Sounds like you just need to install MySQLi.

If you think you've done that and still have a problem, please post your operating system and anything else that might help diagnose it further.


You can check if the mysqli libraries are present by executing this code:

if (!function_exists('mysqli_init') && !extension_loaded('mysqli')) {    echo 'We don\'t have mysqli!!!';} else {    echo 'Phew we have it!';}


If you are on Ubuntu, run:

 sudo apt-get install php-mysqlnd