Home > Backend Development > PHP Tutorial > 数据库连接问题

数据库连接问题

WBOY
Release: 2016-06-23 13:51:27
Original
785 people have browsed it

在本地测试  装的Wamp2.0   已经改了MySQL的密码。但是安装网站时出现Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in  ...  对应代码是 mysql_query($sql,$link) or die(mysql_error()); 我的配置文件已经改了密码。


回复讨论(解决方案)

显然 $link 不是资源

看看上面连接MySQL的代码是什么, 用户名和密码都写对了没有。

贴出具体代码看看

都写对了。。

显示出错的代码就是
mysql_query($sql,$link) or die(mysql_error()); //发送创建member表的SQL请求@zy205817 

$link的?建代?是什???出?看看。

$link=mysql_connect($host,$user,$pass);

$link=mysql_connect($host,$user,$pass)  or die(mysql_error());

改了还是显示这个错误

贴出你的代码

   已经在配置中改了信息。。但是数据库没有数据,,但我用测试文件又显示正确。

看代??有??。

你既然用??文件系那是正?,你??比?一下哪?不同啊。

我要看到你从
$link=mysql_connect($host,$user,$pass) or die(mysql_error());
到出现错误信息 Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in ... 行号
之间的代码


这样看不出问题,你按照#14 贴出代码看看,还有你的require '20-1.php'; 是个什么?

1. 用cmd 测试一下mysql连接
2. 自己写个php测试一个,那几句连接代码

  已经解决,,是我的空格出错。

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