Page 1 of 1

How do u

Posted: Thu Dec 19, 2002 7:24 pm
by Pocketx
How do u have something on a database on another host

and then connect to the database on another host?

Posted: Thu Dec 19, 2002 7:43 pm
by riley
mysql_connect("mysql.host.com:3306", "user", "pass");

the database will connect to any host thats active and you have a username and password to allow connection

Posted: Fri Dec 20, 2002 5:47 pm
by Pocketx
Thanks!!