hi
i want to connect to SQL SERVER using php + IIS
after copying mssql.dll in extension directory i restarted my iis in dos window by runing iisreset
but when i write
$myServer = "localhost";
$myUser = "";
$myPass = "";
$myDB = "Northwind";
$s = mssql_connect($myServer, $myUser, $myPass)
it will give me an error like this :
UNknown():mssql:unable to initialize module compiled with module API=20010901, debug=0, thread-safety=1 PHP compiled with module API=20020429, debug=0, thread-safety=1 These options need to match
can anyone help?