Possible Duplicate:
Shared Members between two different wordpress installations with different databases
For example I have 2 different wordpress installations with different domains and hosts. Databases are separated too (two different databases).
I want to use www.b.com mysql db tables on www.a.com wp-config.php. Is there any way to do that?
If I could register tables from a remote database, I could use that in site b:
define('CUSTOM_USER_TABLE', 'wpsiteA_users');
Can I the database connection from site A on site B?