Hi guys, I have 2 different databases. I want to query table A from database 1 and table B from database 2 and display them on a php page. How do i do it? Advices will be appreciated. Thanks Alot..
hi man, just use the mysql_select_db function before your other query which process on second database. example: mysql_select_db('database2', $connection); Regards.