Home >Backend Development >PHP Tutorial > PHP怎样连接Sql Server数据库,该怎么处理

PHP怎样连接Sql Server数据库,该怎么处理

WBOY
WBOYOriginal
2016-06-13 12:32:29975browse

PHP怎样连接Sql Server数据库
我刚刚开始接触PHP,做到数据库连接这部分了。。几乎很多教程都是MySql的,我现在想连接Sql Server数据库,怎么连接呢。从网上找到的配置方法我都配置了。但是我的安装目录下面没有ntwdblib.dll这个文件。
代码如下:
$conn=@mssql_connect("localhost","zhengjie","123") or die("连接错误!");
mssql_select_db("学生信息管理");
if($conn)
{
echo "连接成功!";
}
?>
运行以后没有任何的提示……求帮助……谢谢

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn