I have an old project that uses php_mssql and php_pdo_mssql and I want to run it on a wamp server with PHP 5.5.12. I downloaded the following dlls:
- php_mssql.dll (wamdir\bin\php\php5.5.12\ext)
- php_pdo_mssql.dll (wamdir\bin\php\php5.5.12\ext)
- ntwdblib.dll (wamdir\bin\php\php5.5.12)
I added the following lines to php.ini:
extension=php_mssql.dll
extension=php_pdo_mssql.dll
And finally enabled the php_sybase_ct extension (read it somewhere)
Though I can see php_mssql and php_pdo_mssql checked in php extensions list in wamp, the extensions doesn't work and it gives this error when I test it:
Fatal error: Call to undefined function mssql_connect()
I run phpinfo(); and I can't see php_mssql and php_pdo_mssql anywhere.
Please Help.