//$table_name is the table you may put in any schema
//$SQLString is the query you want to execute
//$schema1 is the first database
//$schema2 is the second database
//Considring you can handle the connection things and you got proper access right in both database.
function select_table($table_name,$SQLString,$schema1,$schema2..)
{
$result=mysql_query("SHOW TABLES FROM $schema1")
while($row=mysql_fetch_array($result)
{
if($row[0] == $table_name)
{
return mysql_query($SQLString) or die mysql_error();
}
}
$result=mysql_query("SHOW TABLES FROM $schema2")
while($row=mysql_fetch_array($result)
{
if($row[0] == $table_name)
{
return mysql_query($SQLString) or die mysql_error();
}
}
return "any error code";
}
|