would it be possible to see sample code doing a join of two databases?
the difficulty I am having with this is that i connect like so:
$conn=odbc_connect("database","UN","PWD");
$conn2=odbc_connect("database1","UN","PWD");
then query like so:
$SQL = "SELECT database.table.listing_id FROM database.table, database2.table2 INNER JOIN database2.table2 ON database2.table2.num = database.table.id"
i then get results like so:
$result = odbc_exec($conn, $sql);
this does not seem to be a workable solution given the way that i get results.