-2

作成しなかったMSStudioで作成したデータベースに接続しようとしています。dbの作成者から、PHP/HTMLを使用してWebサイトを作成するように依頼されました。次に、2つを接続して、彼のデータをページに表示する必要があります。

私はここで手を握ることを望んでいます、私はかなり新しいです(明らかに)、そして作成者は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);
?>
4

2 に答える 2

0

間違ったdb名を持っていることを除けば、ドライバーがサーバーから欠落しているようです(dbの管理者によって解決されました)。

次に、htmlページの作成に進みます。

于 2013-01-17T00:11:18.257 に答える
0
 mssql_get_last_message() 

Try this to get the error message to see why you cant connect to the db server.
something like
if(!$connect) // This is your db handler
{
die('I cannot connect because:'.$mssql_get_last_message());
}
于 2013-01-14T16:26:13.077 に答える