Hi everybody, I have a problem (and also not good at english!), I am trying to put few interactive pages to the site of our organization. The datas for these pages are expected to be taken from SQL Server2000. I've installed Apache 1.3.33+PHP 5.2. Then I made a connection, seems working till the message saying that the connection with SQL doesn't work. I've commented all nesesarry libraries, and copied them were necessary... when I launch the skrypt of connection test with SQL, there just simple request shown below: ini_set( 'display_errors' , '1' ); error_reporting(E_ALL); $myServer = "sql"; $myUser = "sa"; $myPass = "haomovarga187"; $myDB = "spec"; $s = mssql_connect($myServer, $myUser, $myPass) or die("Couldn't connect to SQL Server on $myServer"); $d = mssql_select_db($myDB, $s) or die("Couldn't open database $myDB"); $query = "SELECT FirstName AS Employee "; $query .= "FROM Expert "; $query .= "WHERE Id = '2'"; $result = mssql_query($query); $numRows = mssql_num_rows($result); echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>"; while($row = mssql_fetch_array($result)) { echo "<li>" . $row["Employee"] . "</li>"; } >>>>So, when I launch that scrypt in PHP Expert Editor there is no problem with connection (means it gives the result of request). But when I am saving it in the root folder of Web-server to launch in the explorer and trying to launch it in brauser it gives: Warning: mssql_connect() [function.mssql-connect]: message: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'. (severity 14) in C:\www\html\Index.php on line 18 Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: sql in C:\www\html\Index.php on line 18 Couldn't connect to SQL Server on sql I am launching the script from my PC (in my office), and SQL Sikwell is on another PC, but I've tryed to launch the script locally, installed the SQL to my PC and tryed to launch but the result was same. Web server Apache +PHP are on one PC, and editor is also there, it's much easy for me to write neither on Notepad, when I am launching a scrypt from the editor. SQL is in local networl. I am saving it in the webserver folder and launching it in brauserr http://localhost/Index.php and there it doesn't work. I've already spoken with all russian-speaking collegues however they couldn't help me. Has anybody any idea to solve this problem? I've spended already 2 weeks trying to solve this! Please help!