xxxxxxxxxx
$servername = "remote_mysql_server";
$username = "remote_mysql_user";
$password = "remote_mysql_password";
$dbname = "remote_mysql_database";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}