我正在使用此代码向我连接的数据库显示表的列表,但我不能将它们放在一个字符串中。 我想要发生的是从数据库中获取表的列表并将它们存储在一个字符串
中$result = mysql_query("show tables"); // run the query and assign the result to $result
while($table = mysql_fetch_array($result)) { // go through each row that was returned in $result
if ($table) {
$aw = array();
$count= 0;
$aw[$count] = $table[0];
echo $string = array($aw[$count]);
$count++;
}
}