|
It is because you are using XAMPP that has PHP version 5.3+, but in PHP 5.3+ php_mssql.dll is no longer supported, you must use sqlsrv extension.
However, you'll need to modify your code for that.
But, for example if you want to use php_mssql.dll, you just need XAMPP with older version of PHP.
For example, I am using XAMPP 1.6.5 that has PHP 5.25 built in itself.
Everything should work fine after you install it. Maybe if you get same error on 1.6.5 version, search in "C:/XAMPP/php/php.ini" for "extension=php_mssql.dll" and remove semi-colon (";") in front of it if it has it.
Hope I helped ya.
Good luck.
|