is it possible to make a query that selects info from two different databases?
say i have: SELECT * FROM $table
and I want to SELECT from a different database at the same time.
possible? thanks.
The only way you can do that in mysql is to perform the query on the 1st d/b then make a connection to the second db and perform aquery on a table in the d/b
HTH GM