I am in the process of installing PHP and MySQL and believe I have done so correctly. I followed the directions in Kevin Yank’s book PHP & MYSQL
NOVICE TO NINJA I have installed the Apache server, MySQL and PHP on my test machine. The server and the sql service all seem to be running fine.
Running a simple PHP program that attempts to connect to a SQL data base produces the following error message:
Fatal error: Call to undefined function mysqli_connect() in C:\Apache24\htdocs\mySQLTest.php on line 26
Obviously it can’t find the mysqli function. I double checked my installation especially the php.ini file and assured myself that I specified an extension=php_mysqli.dll
What could be causing the above error message. Is there another area of the installation that I should check / validate?