Home > php教程 > php手册 > php连接mysql提示Call to undefined function mysql_connect()

php连接mysql提示Call to undefined function mysql_connect()

WBOY
Release: 2016-05-27 08:34:00
Original
1586 people have browsed it

今天在windows中配置了php mysql环境,很高兴测试一段代码结果提示Call to undefined function mysql_connect()这证明数据库配置不成功,代码如下:

<?php 
	$conn = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;password&#39;); 
	var_dump($conn);//开源代码phprm.com 
	 
Copy after login

基本就是改配置文件php.ini

首先要确保php.ini中extension_dir = "./ext",该设置是php引用dll的目录;

1.将php文件夹下libmysql.dll和php5ts.dll两个文件拷贝至windows目录下的system32下;或者在环境变量中增加D:php;D:phpext。这两个目录是php的安装目录和扩展dll的目录。

2.修改windows安装目录下的php.ini 去掉;extension=php_mysql.dll前面的分号;

3.extension_dir = "d:phpext (文件在PHP.INI中)。

你看看你的php.ini的配置找到如下代码:

extension=php_mysql.dll

extension=php_mysqli.dll把前面的分号去掉

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

找到你的PHP根目录,找到两个文件 libmysql.dll和php5ts.dll 将之复制到system32下面,记住是PHP下面的,不是MYSQL.

教程地址:

欢迎转载!但请带上文章地址^^

Related labels:
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template