我正在尝试连接到服务器上托管的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
即使我已将%作为通配符条目以允许所有主机但没有运气。任何想法有什么不妥。
答案 0 :(得分:1)
尝试使用mysql_connect();
中的域名使用端口号。默认的mysql端口号是3306
。
mysql_connect('yourdomain.com:3306', 'user', 'password');