我想使用PHP连接到MSSQL 2008数据库。以下是我尝试使用的代码
<?php
$serverName = "psherathpc"; //serverName\instance
$connectionInfo = array("Database">"shoe_shop", "UID"=>"psherathpc\psherath", "PWD"=>"" );
$conn = sqlsrv_connect($serverName, $connectionInfo);
if($conn)
{
echo "Connection established.<br/>";
}
else
{
echo "Connection could not be established.<br/>";
die( print_r( sqlsvr_error(), true));
}
?>
我收到错误Fatal error sqlsrv_connect()
。我怎么解决这个问题?请一步一步地告诉我。
答案 0 :(得分:0)
你应该总是准确说明你接收的错误但是......
$conn = sqlsrv_connect($severName, $connectionInfo);
你拼错了$ serverName。这可能是一个解决方案。