gpt4 book ai didi

mysql - 将多个选定的下拉值插入到单个列中

转载 作者:行者123 更新时间:2023-11-29 23:48:25 24 4
gpt4 key购买 nike

我有一个包含名称、ID 等的表单。在这种表单中,我从同一个表中获取下拉列表,只有一些 ID,这里我选择多个值,并且应该将其插入到数据库中,但只有一个值插入到表中剩余未插入任何人都可以帮助我解决这一问题。

型号:

$data=array(
'first_name'=>$this->input->post('first_name'),
'exam_id'=>$this->input->post('exam_id'),
);

$this->db->insert('table',$data);

这是我的下拉列表

$this->table = 'table';
$exam = $this->dropdown('exam_id','examr_id');
return $exam;

这是我的观点:

$exam['']='--Select --';
$exam_id="id='exam_id' ";
if($this->input->post('exam_id')) $selected=$this->input->post('exam_id');else $selected='';
echo form_multiselect('exam_id',$exam,$selected,$exam_id);?>

任何人帮助我都会对我更有帮助

最佳答案

当您选择多个值并使用 GET 或 POST 方法检查所选值是否传入您的 url 时。然后使用 implode 分割您请求的数据功能。并保存到数据库中。

关于mysql - 将多个选定的下拉值插入到单个列中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25787329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com