1

我正在尝试连接到服务器上托管的 mysql。使用的面板是cpanel。但我无法连接到数据库。使用 xamp 在本地系统上运行 php 代码。错误如下。

Warning: mysql_connect(): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:\xampp\htdocs\index.php on line 2

Warning: mysql_query() expects parameter 2 to be resource, string given in C:\xampp\htdocs\index.php on line 5

Warning: mysql_error() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\index.php on line 5

即使我已将 % 作为通配符条目,以允许所有主机但没有运气。任何想法有什么问题。

4

1 回答 1

1

尝试将端口号与mysql_connect();. 默认的 mysql 端口号是3306.

mysql_connect('yourdomain.com:3306', 'user', 'password');
于 2013-08-08T09:21:44.090 回答