gpt4 book ai didi

php - 下拉列表始终列出 codeigniter 中的所有值

转载 作者:可可西里 更新时间:2023-10-31 23:29:59 24 4
gpt4 key购买 nike

我的下拉菜单总是列出所有值,每次都可见。

查看

<label>Choose Employees</label>
<select name="select_employee[]" multiple="multiple">
<option disabled="disabled" selected>Select</option>
<? foreach ($employee->result() as $var)
{?>
<option value="<?echo $var->emp_id;?>"><?echo $var->emp_name;?></option>
<?}?>
</select>

这是永久 View 。这是一个CSS问题..?删除数组符号它存在正确的 View ..但我想将它保留为数组。

一开始是这样的

最佳答案

<select name="select_employee[]" multiple="multiple" size="1">将显示两个选项。

Default value is 1 for single select. If the multiple attribute is present, the default value is 4

关于php - 下拉列表始终列出 codeigniter 中的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30906796/

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