My php is not able to connect to a SQL Server box. PHP is *NOT* running as CGI but rather ISAPI filter. Here is my example code:
<html>
<head>
<?php
$conn = mssql_connect("Server","User","Password");
if($conn){
if(!mssql_select_db("Database",$conn)){
die("Database unavailable");
}...