我的数据库中有3个字段,我想按行添加数据,请帮助我将这些数据添加到数据库中。
答案 0 :(得分:0)
答案 1 :(得分:0)
$response = array('status' => 'OK');
$this->output
->set_status_header(200)
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($response, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES))
->_display();
exit;
答案 2 :(得分:0)
使用此示例将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;