On a project i am working on I have split our contacs database, our scheduling database, our jobinformation database, and our accounting database in order to keep the program modular.. What I need to know is how can I do a query (mysql/PHP) were I join tables from say, DB1.job and DB2.contacs Where DB1.job.contact_id=DB2.contacs.contact_id
what or how do I connect to the DBs, currently I have an include that connects to each DB as a different user and I specify in my select statements which one I am using
EX:: $a = $main->Select("sql statement");
Thanx in advance..
Chris