IS it possable to connect to 2 dadtabaces...
I say this as i have a databace of Set values that are common for all servers and access points that sometimes need changing but when i do, it will be for all accounts...
BUT i also want the scripts to coneect to that accounts databace..
(each account has its own)
how can i do this?
???
----------------------
@mysql_connect ('localhost', 'xxx, xxx) or die('<i>Connection Error</i>');
mysql_select_db(dotm_common) or die('<i>DB_common load failed</i>');
$dbnam = "dotm_common";
$var = @mysql_connect('localhost', 'xxx, xxx) or die(Failed);
HOW... do i get the second one to load into the script so it can rrad from the first, and edit the second at the users prefrance?