>
> $db = mssql_connect("WIN2KSRV","sa","xyzxyz") ;
>
Try
$db = mssql_connect("localhost","sa","xyzxyz") ;
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hey have you uncommented the mssql.dll in php.ini? I have the same setup and
it works. You might try calling the server using its ip address or its dns
name. Also, how are you setup for the php extension on the server? Are you
using the php.exe or the php4isapi.dll for the extension?
"Steve Howie"