hello!
my question is the following.
i currently log in to mySQL db on my site using php as follows:
<? $host="localhost"; // Host name
$username="myGuest"; // Mysql username
$password="myPW"; // Mysql password
$db_name="myDB"; // Database name
$tbl_name="myTBL"; // Table name
?>
it works great. i am able to do anything i need. but now, let's say i want to have a page on my local machine that i open to run some maintenance code on my DB's.
how do i go understanding what my "localhost" is? let's assume my site is www.mysite.com
is "www.mysite.com" my localhost?
any help would be largely appreciated!