我正在努力从我的 PHP 文件连接到我的 MS SQL Express 2008 版本,但这似乎几乎是不可能的。
我找到了一些关于 intarweb 解决问题的指南/注释,但这些都没有进一步帮助我。
我从另一个站点获取了一个脚本并输入了我的数据库信息,但我仍然收到错误:
<?php
$myServer = "localhost";
$myUser = "demo_basic";
$myPass = "1234";
$myDB = "demo_basic";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT nitid, nisname ";
$query .= "FROM navitems";
//execute the SQL query and return records
$result = mssql_query($query);
$numRows = mssql_num_rows($result);
echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";
//display the results
while($row = mssql_fetch_array($result))
{
echo "<li>" . $row["nitid"] . $row["nisname"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>
我收到此错误:
警告:mssql_connect() [function.mssql-connect]:无法连接到服务器:第 8 行 C:\inetpub\vhosts\dexterholding.dk\httpdocs_rip\sql.php 中的 localhost 无法连接到 localhost 上的 SQL Server
您可以在以下位置亲自查看: http: //www.dehold.net/_rip/sql.php
有任何想法吗?我正在运行带有 PLESK 和 PHP5 作为 FastCGI 的 Windows Server 2008。