我想在多选中打印下面的数组;
这是我用于多选的html代码。
<select name="user_email[]" size="17" style="margin-top:8px; height:256px;" multiple="multiple" class="wiidth300px textBoxStyle removePadding removeMargin externale_users" value="">
这是我的阵列: $ test = array([0] =&gt; abc@example.com [1] =&gt; def@example.com); 我想打印数组html multi select的元素。
答案 0 :(得分:1)
你必须经常工作 你可以这样做:
<?php $array = Array ('kagava,kagava@manutd.com','evra,evra@manutd.com')?>
<select>
<?php
foreach($array as $index=>$email)
{
?>
<option value="<?php echo $email?>"><?php echo $email?></option>
<?php }?>
</select>
这肯定会有效
答案 1 :(得分:1)
<select multiple>
是您选择多个选项的方法。 http://www.w3schools.com/tags/att_select_multiple.asp