whackaxe -
Joined: 28 Jun 2003 Posts: 90
|
Posted: Tue Dec 30, 2003 11:27 pm Post subject: |
|
|
you say sql, so im assuming mysql. ms/postgre sql shouldnt be to differnt i think all you need to do is make your scripts point to your server
in php for example, if your ip is 123.007.15.255
your standard mysql connection will look like this
mysql_connect("localhost","myname","mypass");
ya see the part where it says localhost? well localhost just means "this computer" basicly. so to change you would just need to replace like so
mysql_connect("123.007.15.255","myname","mypass");
all the modifications, of course, take place on the code on your hosts server |
|