我正在尝试连接到我没有创建的 MS Studio 中创建的数据库。db 的创建者让我创建一个网站,我使用 PHP/HTML 完成了该网站。现在我需要将两者连接起来并将他的数据显示到页面上。
我希望在这里有一些手把手,我很新(显然),我独自在这个项目上工作,因为创建者只使用 VB。
我要做的第一件事是建立与数据库的连接,但我没有运气,我只是收到一个 500 错误,据我所知,这是一个语法错误。
我已经在http://webcheatsheet.com/php/connect_mssql_database.php使用创建者发送的信息尝试了此代码,但我觉得我错过了一些东西。
提前致谢!
我正在使用此代码。
<?php
$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples";
//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 id, name, year ";
$query .= "FROM cars ";
$query .= "WHERE name='BMW'";
//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["id"] . $row["name"] . $row["year"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>