Hey, I am looking for a good way to connect to at least 2 databases in mysql using php and gathering information within each of those databases from tables.
The tables will have related information. eg. I have site names in one database('siteinfo') in a table called 'sites'. I also have the site descriptions in another database('sitedescriptions') in a table called 'descriptions'.
I can't seem to get these two databases to talk to each other. Does anyone know how I can go about doing the above? I'm pretty new to php/mysql.
Also, in the 'descriptions' table there are three rows of information that are related to one site in the sites table. is it possible to get those rows to talk with only the one site that it relates to?
Thank you for any help.