我有一个多选输入,我需要将选择保存到数据库。1 个选定的student_id = 数据库中的 I 行。我该怎么做?
视图:
<select select class="js-example-basic-multiple" name="student_id" multiple="multiple" id="student_id" style="width: 100%;">
<option value="">Select student</option>
</select>
控制器:
$student_id = $this->input->post(['student_id']);
array( "student_id"=>$student_id,
感谢您的帮助
人到中年有点甜