I saw on the web saying that MYSQL is no longer bulit in PHP 5 and need some manually add in "libmySQL.d ll" in system32, then remove the ";" in front of "extension=php_ msql.dll ." in php.ini
but below is the only extension i could find inside the php.ini, there is only extension=mysql .so but no extension=php_m sql.dll
If you wish to have an extension loaded automatically, use the following
What should i do to make it work? when i changed the bolded statment to extension=php_m sql.dll, Apache is having error.
but below is the only extension i could find inside the php.ini, there is only extension=mysql .so but no extension=php_m sql.dll
If you wish to have an extension loaded automatically, use the following
Code:
; syntax: ; ; extension=modulename.extension ; ; For example, on Windows: ; ;extension=mysql.so ; ; ... or under UNIX: ; ; extension=php5_msql.so
Comment