作成しなかった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);
?>