populate dropdown in codeigniter form using set_value

前端 未结 5 390
深忆病人
深忆病人 2021-01-03 11:30

i have a form that uses a drop down and im using codeigniter , form helper and form validation so when i get a validation error in my form , all the correctly entered fields

5条回答
  •  感动是毒
    2021-01-03 12:15

    If you do not have a validation rule on the actual dropdown field, then

    echo form_dropdown('mid',$id_map);
    

    is sufficient.

提交回复
热议问题