如何從mySql中的多個數據庫中選擇所有表格.. 我正在執行以下步驟,但無法實現目標。如何顯示來自多個數據庫的所有表格
<?php
$a = "SHOW DATABASES";
$da = $wpdb->get_results($a);
foreach($da as $k){
echo '<pre>';
print_r ($k->Database);//prints all the available databases
echo '</pre>';
$nq = "USE $k->Database";//trying to select the individual database
$newda = $wpdb->get_results($nq);
$alld = "SELECT * FROM $k->Database";
$td = $wpdb->get_results($alld);
var_dump($td);//returns empty array
}
?>
請幫我
您應該選擇@ cherouvim的答案正確的! – JonyD 2016-08-17 15:47:26