如何填写下拉菜单

时间:2010-03-23 04:47:34

标签: php mysql

我想用MySQL数据库中的列填充下拉菜单。我已经设置了其余的数据库,但目前它只是一个文本输入框,只是从列表中选择实际条目会更容易。也有人知道一个很好的教程或网站,其中包含PHP和MySQL的教程和示例代码

1 个答案:

答案 0 :(得分:1)

$result = // from the database

echo '<select name="foobars">';

while ($row = mysql_fetch_assoc($result))
{
   echo '<option value="'.$row['id'].'">'.$row['name'].'</option>';
}

echo '</select>';