In all of my admin pages for this site I am connecting to the same host,db, with the same pw on every single page how can I just include one php page which has that connection string?
what should the code look like that goes on each page?
I am guessing that my connect.php page will look like:
$link_id = mysql_connect ("runtech1", "the_mirror", "something");
mysql_select_db("the_mirror", $link_id);
I am using $link_id in all of my while loops on all the pages so I want to maintain that variable name