Используйте этот пример для вставки данных json в таблицу базы данных
$data = array(
'name'=>$this->input->post('name'),
'mobile'=>$this->input->post('phone_number'),
'email'=>$this->input->post('email'),
'message'=>$this->input->post('message'),
'contact_for'=>$this->input->post('user_type'),
'ip_address'=>$this->input->ip_address(),
'browser_info'=>$this->agent->browser().' - '.$this->agent->version(),
);
$json = json_encode($data);
$insertField = array('json_field' => $json);
$this->db->insert('tbl_name', $insertField);
if ($this->db->affected_rows() > 0) {
$insert_id = $this->db->insert_id();
return $insert_id;
}
return false;