i've got a mysql database on one server and the webserver on another, so i'd like to use php to access the sql server, and it looks like it ought to, but when i do this:
mysql_connect("10.0.0.5", "root");
i get
Warning: Host '10.0.0.6' is not allowed to connect to this MySQL server in /usr/local/etc/apache/htdocs/random/sqltest.php on line 5
10.0.0.5 is my sql server and 10.0.0.6 is my webserver. any ideas?