In MySQL, I have two different databases -- let\'s call them A and B.
Database A resides on server server1, while database B resides on server server2.
Both serv
The only way I can think of, is by opening 2 separate connections (i.e. instantiate 2 PDO objects) with all the different parameters, use 2 queries to query all the data you need into PHP, and then work with that on PHP.