如何使用CodeIgniter中的表单下拉分别显示id和选项值?将从数据库中检索数据ID和值。我必须使用表格下拉功能。
在这方面的任何帮助将受到高度赞赏。
答案 0 :(得分:0)
参考此网址
http://ellislab.com/codeigniter/user-guide/helpers/form_helper.html
从您的控制器,构建sql语句以从数据库中检索id,名称并以数组格式将其发送到视图..
对于前。
在你的控制器中,
$data['category_list']=array('1'=>'1st category',2=>'2nd category'.. etc);
在你看来,
<div> Select category </div>
<div><?php echo form_dropdown("category",$category_list)?>
//这里是$ category_list,它是从Controller派生的。