以下是我的问题:Fatal error: Call to undefined function mssql_connect().
我为此安装了2个驱动程序,如其他帖子中所述。
php_sqlsrv_56_nts.dll
<?php
$myServer = ".";
$myUser = "LoginDisciples";
$myPass = "********";
$myDB = "Disciples";
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
?>
登录信息都是正确的。
请帮忙!
答案 0 :(得分:-1)
您应该使用PDO
如果缺少驱动程序 - 这是一个Ubuntu示例如何安装:
1)下载驱动程序sudo apt-get install php5-xxx
2)激活驾驶员sudo php5enmod xxx
3)重启apache sudo service apache2 restart