Home  >  Article  >  php教程  >  测试PHP连接MYSQL

测试PHP连接MYSQL

WBOY
WBOYOriginal
2016-06-06 20:00:12884browse

创建一个 testmysql.php 文件,其内容如下: ?php $link=MySQL_connect(’MySQL服务器名’,'MySQL用户名’,'密码’); if(!$link) echo Error !; else echo Ok!; MySQL_close(); ? Host 'A'is not allowed to connect to thisMySQL server 首先查看防火墙 再


创建一个 testmysql.php 文件,其内容如下:

$link=MySQL_connect(’MySQL服务器名’,'MySQL用户名’,'密码’);
if(!$link) echo "Error !";
else echo "Ok!";
MySQL_close();
?>

 

Host 'A'is not allowed to connect to thisMySQL server

首先查看防火墙

再有

看解决方法

ERROR 1130: Host '192.168.1.22' is not allowed to connect tothis MySQL server

解决方法:
1. 改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改"mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"

mysql -u root -pvmwaremysql>usemysql;mysql>update user set host = '%' where user ='root';mysql>select host, user from user;

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
Previous article:PHP基础学习之语法Next article:php session应用实例