如何通过下拉列表在Codeigniter中的控制器中列出值ID。
$id=$this->input->post('id');
$this->db->where('id', $id);
答案 0 :(得分:0)
替换
$id = $this->input->post('id');
与
$id = $this->input->post('dropdown name');
答案 1 :(得分:0)
在数据发布时使用下拉名称。喜欢。
//查看页面
<select name="id">
</select>
//控制器
$ id = $ this-> input-> post('id');