Connect to an online MySQL database from localhost

后端 未结 5 2014
旧时难觅i
旧时难觅i 2021-01-19 02:06

I am trying to connect to my MySQL database on my online server via PHP on my localhost.

$con = mysql_connect(\"$hostname\", \"$username\", \"$password\");
i         


        
5条回答
  •  逝去的感伤
    2021-01-19 02:48

    Your MySQL server needs to have your IP address (or % as wild card) specified in the allowed hosts.

提交回复
热议问题