0

我在我的项目中应用了标签功能,就像堆栈溢出一样。

当我从我的表单中提交多个标签时,在我的控制器中我得到它是这样的:

$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();
    }
}
4

1 回答 1

2

您可以使用php的explode功能轻松完成

$data   =   array('instrunction'=> $this->input->post('tags_id');

$ids    =   explode(',',$data);

unset($data);

foreach($ids as $id)
{
    $data['tag_id'] =   $id;    // tag_id is table column
    $this->db->insert('instructions',$data);
    unset($data);
}
于 2013-05-08T06:22:25.387 回答