我的WAMP服務器安裝在我的系統中。 我也在同一個系統上安裝了MS SQL Server 2008。php-mssql服務器數據庫連接使用wamp服務器
我想使我的php應用程序與MS SQL Server的連接。 我已經在我的config.php文件中嘗試了下面的代碼段以獲得數據庫的一致性。
<?php
$conn=mssql_connect('localhost','DINKDEV2\Administrator','[email protected]') or die('not connect');
mssql_select_db('nevis_pharma_company');
if($conn) {
echo "Connection established.<br />";
}else{
echo "Connection could not be established.<br />";
die(print_r(sqlsrv_errors(), true));
}
?>
你甚至檢查文檔? http://www.php.net/manual/en/function.sqlsrv-connect.php – jycr753