Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
PHP and MySQL Integration Problem
I currently have PHP and Apache installed on my local computer, and I use PHP fine to test my scripts before uploading them to a host. However I have never been able to use MySQL with PHP. I can use MySQL, but only in DOS mode. Yes I have enabled the extension in php.ini yet when I restart apache, it says mysql extension not found. I have even looked in the folder where the extension should be, and guess what…It is sitting right there! I dont get why it would say it can't find it in the folder that it is supposed to be in and even is in! Its like it is invisible. Any suggestions why this is happening? P.S. I have reinstalled mysql like 5 times trying to see if that would repair it and it didnt. :(
Try this..
- Make sure that you have a valid php.ini in your windows directory
- copy libmysql.dll to the system32 directory
- set the extension_dir in php.ini to the ext directory of your PHP installation directory
- enable the MySQL extension in php.ini by uncommenting the line extension=php_mysql.dll
- restart the IIS service This should work for you although you never listed the versions you are using.