php 5.3 配置mssql笔记
时间:2021-07-01 10:21:17
帮助过:5人阅读
$link = mssql_connect(‘localhost‘, ‘db_user‘, ‘db_password‘
);
if(!
$link) {
echo‘Could not connect‘
;
die(‘Could not connect: ‘ .
mssql_error());
}
echo‘Successful connection‘
;
mssql_close($link);
?>
php 5.3 配置mssql笔记
标签: