我們正在開發PHP的Web服務,我們的數據庫的SQL Server 2008 R2上如何PHP的Web服務連接到SQL Server 2008 R2
/* SQL連接字符串*/
$link = mssql_connect('localhost','usrname','pass') or die('Cannot connect to the DB');
mssql_select_db('Data Source=PC-NAME;Initial Catalog=DBNAME.MDF;Persist Security Info=True',$link) or die('Cannot select the DB');
/* grab the posts from the db */
echo $query = "SELECT * FROM add_product WHERE prod_pos = '".$_GET['prod_pos']."'";
$result = mssql_query($query,$link) or die('Errant query: '.$query);
它給出了致命錯誤mssql_connect。
致命錯誤:在service.php調用未定義功能mssql_connect()上線11
那麼如何連接的PHP Web服務與SQL Server 2008 R2 ???
在此先感謝...