ホームページ >バックエンド開発 >PHPチュートリアル >SQLSERVER に接続する PHP の接続文字列のインスタンス名に関連する問題
SQLSERVER
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $host='192.168.1.122'; --IP $port=1433; --端口 $instanse = 't02'; --实例名 $username='sa'; $password='passss'; if (! $link = mssql_connect($host.':'.$port.$instanse, $username, $password) ) --这样写好像不对