0

Windows Server 2008 R2、SQL Server 2008 R2 で実行されているデータベースがあります。PHP 経由でデータベースにクエリを実行し (他のオプションも使用できます)、データを Web ページに表示する必要があります。

UDL テスト ファイルを使用して、ユーザー名、パスワード、およびサーバー名との接続をテストしました。接続に成功しました。

私の Web サーバーには PHP 5.4 がインストールされ、動作しています。

データベースに接続してクエリを実行する PHP スクリプトを作成しましたが、サーバー エラーが発生します。

<?php
$myServer = "ipaddress";
$myUser = "username";
$myPass = "password";
$myDB = "dbname"; 

//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 fullName, email_address, pos_desc";
$query .= " FROM dbo.EMPLOYEE_VIEW ";
$query .= "WHERE grp_cde='STAFF'"; 

//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);
?>

データベース サーバーと Web サーバーはどちらも Windows Server 2008 R2 を実行しており、同じドメインに存在することに注意してください。

唯一のエラーは次のとおりです。500 - 内部サーバー エラーです。お探しのリソースに問題があり、表示できません。

これが機能しない理由をトラブルシューティングするためにできることはありますか?

この質問に関するすべての助けに感謝します。

4

2 に答える 2

1

Error 500 usually means you forgot a ; or ', I suggest you check your code carefully for any redundant or missing characters.

Also, turning on php errors in your php.ini file helps alot with fixing these sort of stuff.

于 2013-06-06T13:43:14.813 に答える