how can I get data from an table on server A and from an other table on server B in the same script with SQL-Commands to recived a new query of some parts of this too tables.
if I use the command "$link = mysql_connect($loc_host,$loc_user,$loc_pass);" I can get data from this server. if I want data from the secound I have to connect to the secound with "$link_2 = mysql_connect($web_host,$web_user,$web_pass);" and I loss the first connection. how can I connect to both a teh same time.
regards Andy