.hey球員我如何填充下拉列表與某個數據庫中的表列表?與表列表填充下拉列表
$db = mysql_select_db('thepillar');
$sql = "SHOW TABLES";
$result = mysql_query($sql);
echo '<form method="post" id="try" action="pillar.php">';
echo 'Select Batch: ';
echo '<select name="batch" id="batch">';
echo '<option>';
while($r = mysql_fetch_assoc($result))
{
$tables = $r;
echo '<option>'.$tables.'</option>';
}
。我已經嘗試了上述代碼,但下拉列表
只充滿了單詞「陣列」多次取決於有多少數據庫中的表的存在。
.help pls!
在循環內部做一個'print_r($ tables)',看看從DB返回的內容=) – kjy112 2011-03-17 20:08:37