Cool, now that I know it's possible, what would be the appropriate code I'd need to add/subtract to what I currently have...
$mysql_db = "db1";
$mysql_user = "user1";
$mysql_pass = "pass1";
$mysql_link = mysql_connect("localhost", $mysql_user, $mysql_pass);
mysql_select_db($mysql_db, $mysql_link);
I've already tried replacing "localhost" with the ip address and url of the database location, but it's still not connecting. Any help would be greatly appreciated.
-Thanks