使用PHP脚本远程连接到MySQL

时间:2015-12-19 13:12:16

标签: php mysql css phpmyadmin xampp

我的MySQL服务器在一台PC上运行(xampp)。我想使用来自另一台PC(客户端)的PHP脚本将数据插入MySQL数据库(远程PC)。我使用HTML5和CSS建立了一个网站(客户端) 。当PHP在服务器上运行时,如何使用简单的网页连接到远程PC?

1 个答案:

答案 0 :(得分:1)

您可以使用php从任何地方连接到mysql数据库。只需将位置更改为指向远程服务器即可。

$servername = "ip_of_remote_server";
$username = "username";
$password = "password";

// Create connection
$conn = new mysqli($servername, $username, $password);

但是如果使用root用户,则必须配置mysql服务器以允许远程连接。看到: How to allow remote connection to mysql