Reputation: 591
I downloaded and installed php7 from: http://windows.php.net/qa/#php-7.0-ts-VC14-x64
The php codes are running fine. I am not able to connect database using 'mysqli' Class. It says
Class 'mysqli' not found
I've uncommented extension=php_mysqli.dll
in php.ini file.
Did I miss anything while installing php7.
Upvotes: 12
Views: 15713
Reputation: 591
I solved the issue, it was a silly mistake. The extension_dir
was not set. I set it to extension_dir = "C:\php7\ext"
and its working fine.
Upvotes: 12