multiple mysql link between database

A

Anonymous

Guest
:idea:
$db1=mysql_select(db_a,$link);
$db2=mysql_select(db_b,$link);
mysql_query($query_for_db_a,$db1);
select those that DB_A the team with the name of the 2 persons that are part of them, the name are in the DB_B

mysql_query($query_for_db_b,$db2) :arrow:
 
Back
Top