Ben PHP dosyaları benim MS SQL 2008 Express sürümü bağlanmak için mücadele ediyorum, ama neredeyse imkansız görünüyor.
Ben sorunları çözme teh intarweb birkaç rehberleri / notları buldum, ama bunların hiçbiri beni daha fazla yardımcı olmuştur.
Ben başka bir siteden bir komut almış ve benim veritabanı bilgileri girilen, ama ben yine hatalar olsun ettik:
<?php
$myServer = "localhost";
$myUser = "demo_basic";
$myPass = "1234";
$myDB = "demo_basic";
//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 nitid, nisname ";
$query .= "FROM navitems";
//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["nitid"] . $row["nisname"] . "</li>";
}
//close the connection
mssql_close($dbhandle);
?>
Ben bu hatayı alıyorum:
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: localhost in C:\inetpub\vhosts\dexterholding.dk\httpdocs_rip\sql.php on line 8 Couldn't connect to SQL Server on localhost
Siz kendiniz için görebilirsiniz: http://www.dehold.net/_rip/sql.php
Any ideas? I'm running Windows Server 2008 with PLESK and PHP5 as FastCGI.