Is there any easy way to select and count distinct entries from two different databases..?
Something like this:
$result = mysql_query("SELECT DISTINCT `entry` FROM `database1.table1`, `database2.table1`");
$total = mysql_num_rows($result);
Thanks in advance
//jek