thanks sleipnir214 for your feedback - i have to admit though that i did not fully understand what is meant with "...then use individual db-connect handles ....to query....".
below i put some code typical of what i would like to accomplish - assuming that tbl_a is on server1 and tbl_b on server2 could you possibly point me in the right direction?
...
$conn1 = ifx_connect("server1", "user1", "passwd1"

or die("bye"

;
$conn2 = ifx_connect("server2", "user2", "passwd2"

or die("bye"

;
$sql =
"select tbl_a.fld_1, tbl_a.fld_2, tbl_b.fld_1
from tbl_a, outer tbl_b
where tbl_a.fld_1 = tbl_b.fld_1"
??? $sql_result = ifx_query($sql,$conn1) or die("bye"

;
ifx_htmltbl_result($sql_result,"border=0"

;
ifx_free_result ($sql_result);
ifx_close($conn1);
...
how would the line with the definition of $sql_result have to be changed to reflect that the sql uses both connection vars? or am i on a completely wrong track?