I have a mysql Database on one computer -
This computer has no web server software on it except mysql. I have set up the mysql my.cnf file according to info on the net. I have my firewall turned off so the 3306 port should be open.
On a remote server I host some website. I want to access the database on the first computer through php. The code looks like this.
<?php
$host = 'xxx.xxx.x.xx';
$name = 'xxx';
$pass = 'xxxx';
$connection = mysql_connect($host,$name,$pass) or die ("Unable to connect!");
?>
However when I run this I get a time out error stating that "Lost connection to MySQL server at 'reading initial communication packet', system error: 110"
Could someone give me a hand in setting this up so that I am able to access the mysql on my home computer remotely from my hosting server. thanks.
mysql_*functions. They are no longer maintained and community has begun the deprecation process . Instead you should learn about prepared statements and use either PDO or MySQLi. If you cannot decide, this article will help to choose. If you care to learn, here is a quite good PDO-related tutorial. – tereško May 20 '12 at 18:36