我在我的项目中应用了标签功能,就像堆栈溢出一样。
当我从我的表单中提交多个标签时,在我的控制器中我得到它是这样的:
$this->input->post('tags_id')
所以我得到 了 完全2,3,44,442
的价值 。$this->input->post('tags_id')
我想要的是我希望将每个值一一插入到我的标签表中。
如何从逗号分隔列表中获取每个值以插入到我的数据库中?请帮我...
我正在执行以下操作以插入我的数据库
function entry_insert_instdetails()
{
$this->load->database();
$this->db->trans_begin();
$data=array('instrunction'=> $this->input->post('tags_id'),
'creater_id'=>$this->session->userdata('userid'),
);
$this->db->insert('instructions',$data);
if ($this->db->trans_status() === FALSE)
{
$this->db->trans_rollback();
}
else
{
$this->db->trans_commit();
}
}