使用数据库列表填充下拉列表
.大家好,我的下拉菜单需要一些帮助。 我已经知道如何从数据库填充下拉列表,但我想做的是用 MySQL 服务器中可用的数据库列表填充下拉列表。谁能帮我对此进行正确的编码。提前致谢!顺便说一句,我正在使用 php。
更新:
.好吧,我尝试了这个:
$sql = "SHOW databases";
$result = mysql_query($sql);
echo '<form method="post" id="try" action="pillar.php">';
echo '<select name="batch" id="batch">';
echo '<option>';
while($r = mysql_fetch_assoc($result))
{
$database = $r['Database'];
echo '<option>'.$database.'</option>';
}
echo '</select><br>';
echo '<input type="submit">';
echo '</form>';
它有效!但有没有办法可以排除任何检索到的值?因为我想在下拉列表中输出的是数据库批次列表。但发生的情况是,下拉列表中包含 MySQL 的默认数据库。例如“information_schema”和“mysql”。
.Hi everyone i need a little help for my dropdown menu.
.I already know how to populate a dropdown list from a database but what i want to do is to fill my dropdown list with the list of databases available in my MySQL server. can anyone please help me with the proper coding for this one. Thanks in advance! by the way i am using php.
update:
.alright i tried this:
$sql = "SHOW databases";
$result = mysql_query($sql);
echo '<form method="post" id="try" action="pillar.php">';
echo '<select name="batch" id="batch">';
echo '<option>';
while($r = mysql_fetch_assoc($result))
{
$database = $r['Database'];
echo '<option>'.$database.'</option>';
}
echo '</select><br>';
echo '<input type="submit">';
echo '</form>';
IT works! but is there a way that i could exclude any of the retrieved values? because what i want to output on my dropdown is the list of batch which is the databases. but what happens is that the dropdown includes the default databases of MySQL. like "information_schema" and "mysql".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(我不想在单个 if 子句中使用许多 FALSE 运算符,因此在 else 中执行操作)
(I don't want to many FALSE operators in a single if clause, hence the action in else)
通过 MySQL 中适当的数据库权限,您可以使用
SHOW DATABASES
查询数据库With the proper DB rights within MySQL you can query the database with
SHOW DATABASES