Try this Link
http://www.php.net/manual/hu/ref.mssql.php
Go to User Contributed Notes they have same problems with some solutions like :
used the odbc calls
People seeling the mssql dll should be advised that php4 ships with
php_mssql70.dll
php_mssql70.dll works and is included with v4.01p2.
All you have to do is set the php.ini setting about the MS SQL extension as
follows:
[MSSQL]
extension=php_mssql70.dll ;
mssql.allow_persistent = On ;
allow or prevent persistent link
mssql.max_persistent = -1 ; maximum number of persistent links. -1 means
no limit
and make sure you have the extension dir pointed to your dir where your dll
files are. Then it should work...mine does.
ScottK wrote:
Well that worked. The gd.dll didn't spit up any errors, but when I tried the mssql.dll, I get the same error I did before..pluse this I forgot to mention that is actually on the web page (the first message was in a pop up window)
PHP Warning: Unable to load dynamic library 'c:\php\extensions/php_mssql.dll' - The specified module could not be found. in Unknown on line 0
The file is there. I doubled checked it. Could there be somethign wrong with it? Do I have all the libaries to use mssql functions?