Home >Backend Development >PHP Tutorial >php使用mysql扩展库连接mysql服务器失败

php使用mysql扩展库连接mysql服务器失败

WBOY
WBOYOriginal
2016-06-23 14:16:36980browse

MySQL 扩展 服务器

在php使用mysql扩展库扩连mysql服务器的时候,总是出错。说是页面打不开,详细错误也没有报,我试了一下其他的错误都会报!在php.ini 文件中也进行了配置。使用php_info()函数也能够在页面中看到Mysql。很是费解。
一下是我连接数据库的语句:
$link=mysql_connect("localhost:3306","root","123456");
if(!$link){
die("错误信息是".mysql_error());
}
很是费解。不知道是为什么。
以下是我php.ini文件中的配置。
extension_dir = "D:/php/ext"
extension=php_msql.dll

回复讨论(解决方案)

extension=php_myql.dll  扩展打开没有,打开错误提示看看。

$con = mysql_connect("localhost","mysql_user","mysql_pwd");if (!$con){    die('Could not connect: ' . mysql_error()); }

多谢大家了,我看了一下,是我原来有装过mysql服务器,后来又卸载了,可能是libmysql.dll文件的问题,我将libmysql.dll和php5ts.dll文件复制到了,windows/system下,又重启了一下apache就可以了!

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