Hi guys, I need help here...
You know if you wanna connect to mysql through php in the localhost you just do:
$db = mysql_connect("localhost", "user", "password");
mysql_select_db("database", $db);
Now.. what if I wanna put.. lets say the database on a web space I got from my ISP.
Questions are:
Which files do I need to put on the webspace?
How do I connect to it?
Do I need to do anything first?
I am totally clueless when it comes to placing the files outside of my computer >.<.
You know if you wanna connect to mysql through php in the localhost you just do:
$db = mysql_connect("localhost", "user", "password");
mysql_select_db("database", $db);
Now.. what if I wanna put.. lets say the database on a web space I got from my ISP.
Questions are:
Which files do I need to put on the webspace?
How do I connect to it?
Do I need to do anything first?
I am totally clueless when it comes to placing the files outside of my computer >.<.
Comment