Hi,
I'm having all sorts of problems trying to get SQL 2000 to talk to PHP but SQL is on a different PC to the PHP / webserver.
Did you come across any errors like this when you connecting on your local box ?
Warning: MS SQL message: Login failed for user '\'. (severity 14)
I'm using the following code to connect:-
$hostname ="VENUS";
$username = "admin";
$password = "passwordhere";
$dbName = "mydb";
MSSQL_CONNECT($hostname,$username,$password) or DIE("DATABASE FAILED TO RESPOND.");
It's just a thought ... I've had no success with this and I'm been working on it for hours.