Smarty PHP Multi-Select

时间:2017-05-03 19:29:28

标签: php smarty

我正在使用一个我认为正在使用Smarty PHP的软件。我想将其中一个下拉菜单从选择转到多选。这是当前的代码

{html_options options=$brands selected=$val['brands']}

多选中的等价物是什么?

1 个答案:

答案 0 :(得分:1)

我想您需要将multiple属性添加到select - 标记:

<select name="" multiple>
    {html_options options=$brands selected=$val['brands']}
</select>