Hello. I have a remote mysql database named datos hosting in http://apolosoft.beunleashed.com/datos/ and I have a scripts like this to try to connect: // create connection $connection = mysql_connect("http://apolosoft.beunleashed.com","apoloso1","idjr95"); // test connection if (!$connection) { echo "Couldn't make a connection!"; exit; } // select database $db = mysql_select_db("datos", $connection); // test selection if (!$db) { echo "Couldn't select database!"; exit; } But not work. What hostname must I use? I've also try "ftp.beunleashed.com" but not work. Any help? Thanks.
If uoy change your code like below, I think it will work.
$connection = mysql_connect("apolosoft.beunleashed.com","apoloso1","idjr95");