P粉0463871332023-08-24 19:42:37
You can check whether the mysqli library exists by executing the following code:
if (!function_exists('mysqli_init') && !extension_loaded('mysqli')) { echo 'We don\'t have mysqli!!!'; } else { echo 'Phew we have it!'; }
P粉9041915072023-08-24 00:20:02
Sounds like you just need to install MySQLi.
If you think you've done this and are still having issues, please post your operating system and anything else that might help with further diagnosis.