我想用數據庫中的表名填充列表框。這裏是我爲它編寫的代碼,但它似乎並不工作使用表名填充列表框
<select id="arrays" name="arrays" style="width: 403px;" class="Fieldcell">
<?php
$dbname = 'myBase';
if (!mysql_connect('localhost', 'root', '')) {
echo 'Could not connect to mysql';
exit;
}
$sql = "SHOW TABLES FROM $dbname";
$result = mysql_query($sql);
if (!$result) {
echo "DB Error, could not list tables\n";
echo 'MySQL Error: ' . mysql_error();
exit;
}
$num_tables = mysql_num_rows($result);
for($i=0;$i<$num_tables;$i++)
{
echo "<option value=\"$row[i]\">$row[i]</option>";
}
/*while ($row = mysql_fetch_row($result)) {
echo <option value=\"$row[0]\">$row[0]</option>";
}*/
mysql_free_result($result);
?>
</select>
'它似乎沒有工作'。你能解釋什麼不起作用嗎?您可以輕鬆地在屏幕上打印PHP警告/錯誤。但是我能看到的是你的第一個for循環並不完整。 'for($ i = 0; $ i'應該是:for($ i = 0; $ i <$ num_tables; $ i ++) – Rhapsody 2010-11-15 13:22:27