Вот код контроллера, который вы получите из 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;
}
}
Надеюсь, вы поймете, как просто вставить данные в две таблицы с помощью модели.