1 回答
TA贡献2051条经验 获得超10个赞
这是控制器代码,您将从中获取数据VIEW作为您将在controller.
// Controller
$data_array1 = array(
'table_field_name_here' => $this->input->post('pos_id'),
'table_field_name_here' => $this->input->post('post_usr'),
'table_field_name_here' => $this->input->post('comment'),
);
$data_array2 = array(
'table_field_name_here' => $this->input->post('Project_name'),
'table_field_name_here' => $this->input->post('Proejct_lang'),
);
$table_1 = 'table_name';
$table_2 = 'table_name';
$record_id_1 = $this->Common_model->insert_into_table($table_1, $data_array1);
$record_id_2 = $this->Common_model->insert_into_table($table_2, $data_array2);
if($record_id_1 && $record_id_2){
// success ...!
}else{
// fail ...!
}
model您将从控制器调用的函数。
// Model
function insert_into_table($table, $data) {
// echo "<pre>asdf";print_r($data);exit;
$insert = $this->db->insert($table, $data);
$insert_id = $this->db->insert_id();
if ($insert) {
return $insert_id;
} else {
return false;
}
}
希望您能了解使用模型将数据插入到两个表中是多么简单。
添加回答
举报