私はSQLサーバーの初心者です。Windows 7マシンでiis 7を使用して、SQLサーバーエクスプレスエディション2012をphpに接続したかっただけです。
ここに私のコードがあります:
$myServer = "ASUS\SQLEXPRESS";
$myUser = "sa";
$myPass = "1991";
$myDB = "test";
echo("aaaa");
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass);
echo("bbbb");
//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 *FROM mhs";
//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["nim"] . $row["nama"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
私のphpコードはローカルiisで実行されています。ユーザー名、パスワード、サーバー名は正しいと思いますが、ローカルiisで実行するとエラーは表示されず、「aaaa」と「bbbb」だけが表示されません。
私は mssql_connect で間違っていたと思いますが、何が間違っていますか? 誰でも私を助けることができますか?
ありがとう。