Home > Database > Mysql Tutorial > 在WINDOWS下php连接MYSQL的问题_MySQL

在WINDOWS下php连接MYSQL的问题_MySQL

WBOY
Release: 2016-06-01 13:38:22
Original
809 people have browsed it

bitsCN.com

当我写了个一个内容为:

$conn = mysql_connect('localhost','root','password');

var_dump($conn);

?>的php文件时,  提示的错误为  Call to undefined function mysql_connect()。

这个问题的原因很明显,就是没有连得上数据库。网上到处都有解决方法。基本就是改配置文件php.ini  把extension = php_mysql.dll前的分号去掉

我用的是apache,所以如果还这行的话,再看看主配置文件里的路径和引用都设置好了没有  PHPIniDir "PHP.INI的路径"   还要加一句  LoadModule*************的内容  这个网上都可以找得到。一般情况下到这里基本可以解决。

如果这时还没有解决的话。你最好用phpinfo()测试一下。看里面是不是有如下内容

如果没有出现这个,说明没有连得上数据库。找到你的PHP根目录,找到两个文件 libmysql.dll和php5ts.dll 将之复制到system32下面。记住是PHP下面的。不是MYSQL,当时我就因为弄错而纠结了一下午。然后你再用Phpinfo()测试一下,应该就可以找到上图内容了。如果还是不行,建议检查配置过程哪里是不是弄错了。希望能解决大家的问题

bitsCN.com
Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template