1
我試圖通過PHP 5.2連接到外部Sql Server。解決來自PHP的MSSQL連接
使用此行:
$con = mssql_connect('123.123.123.123','Username','Password') or die('Could not connect to the server!');
我收到此錯誤:
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: 123.123.123.123 in /home/file/public_html/structure/index.php on line 4 Could not connect to the server!
我的託管服務提供商,向我保證,端口是打開我的服務器連接到數據庫。看着我的PHP信息,MSSQL支持已啓用,使用FreeTDS。
任何想法爲什麼這會失敗,或者我如何開始解決問題?
嘗試指定SQL服務器明確 – haynar
遵循的端口[文檔](http://php.net/manual/en/function.mssql-connect.php)瞭解有關語法的詳細信息 – haynar