
January 11th, 2000, 03:12 AM
|
|
Contributing User
|
|
Join Date: Dec 1999
Location: Netherlands
Posts: 77
Time spent in forums: < 1 sec
Reputation Power: 14
|
|
|
Hi Will,
a) Is this possible?
b) Is it also possible to search across both databases, and all tables concerned in both tables?
It should be possible if you try:
$mysqllink = mysql_connect("host","user","pass");
$query1 = mysql_db_query("dbasename1","somequery",$mysqllink);
$query2= mysql_db_query("dbasename2","anotherquery",$mysqllink);
Good luck, Peter
[This message has been edited by PAV (edited January 11, 2000).]
|