gpt4 book ai didi

php - mysql php jquery 隐藏显示选择

转载 作者:行者123 更新时间:2023-11-28 23:30:58 24 4
gpt4 key购买 nike

我懂一点 PHP 编程,但不懂 JQuery。我已经构建了一个 <select>包含来自 MySql 数据库的数据的下拉菜单。但现在我想要 <select> 旁边的按钮或其他东西选项,例如 + 号或可以给我额外的 <select> 的东西选项。并且这可以根据您的需要随时发生。

附言。我为我的英语感到抱歉。

这是我想要的样子的图片。

enter image description here

接下来你会得到这个。 enter image description here这是我已经编写的代码。

<?php

$conn = new mysqli('localhost', 'username', 'password', 'database')
or die ('Cannot connect to db');

$result = $conn->query("select id, name from table");

echo "<html>";
echo "<body>";
echo "<select name='id'>";

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

echo "</select>";
echo "</body>";
echo "</html>";
?>

最佳答案

您可以使用复选框代替下拉进行多选

while ($row = $result->fetch_assoc()) {
unset($id, $name);//use if you want
$id = $row['id'];
$name = $row['name'];

echo '<input name="city[]" type="checkbox" value="'.$name.'" />'.$name;
}

关于php - mysql php jquery 隐藏显示选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37372810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com