使用数据库列表填充下拉列表

发布于 2024-10-22 03:12:38 字数 692 浏览 2 评论 0原文

.大家好,我的下拉菜单需要一些帮助。 我已经知道如何从数据库填充下拉列表,但我想做的是用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遇见了你 2024-10-29 03:12:38
while($r = mysql_fetch_assoc($result)) 
{
    if($r['Database'] == 'information_schema' 
       || $r['Database'] == 'test'
       || $r['Database'] == 'mysql' ){
    }else{
        $database = $r['Database'];
        echo '<option>'.$database.'</option>';
    }
}

(我不想在单个 if 子句中使用许多 FALSE 运算符,因此在 else 中执行操作)

while($r = mysql_fetch_assoc($result)) 
{
    if($r['Database'] == 'information_schema' 
       || $r['Database'] == 'test'
       || $r['Database'] == 'mysql' ){
    }else{
        $database = $r['Database'];
        echo '<option>'.$database.'</option>';
    }
}

(I don't want to many FALSE operators in a single if clause, hence the action in else)

临走之时 2024-10-29 03:12:38

通过 MySQL 中适当的数据库权限,您可以使用 SHOW DATABASES 查询数据库

$ignore = array('information_schema', 'mysql', 'test');
$sql = "SHOW DATABASES";
$q = mysql_query($sql);
while($r = mysql_fetch_assoc($q)) {
    $database = $r['Database'];
    if(!in_array($database, $ignore)) {
        // do something
    }
}

With the proper DB rights within MySQL you can query the database with SHOW DATABASES

$ignore = array('information_schema', 'mysql', 'test');
$sql = "SHOW DATABASES";
$q = mysql_query($sql);
while($r = mysql_fetch_assoc($q)) {
    $database = $r['Database'];
    if(!in_array($database, $ignore)) {
        // do something
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文