|
$data = array(
'user_id' => time(),
'phone' => $this->input->post('phone'),
'password' => $passwordF,
'status' => 1,
'type' => 1,
'judge_status' => $judge_status,
'identity_image_path' => $info['identity_image_path']['file_name'],
'transport_license_path' => $info['transport_license_path']['file_name'],
'driver_license_path' => $info['driver_license_path']['file_name'],
'identity_card'=> $this->input->post('identity_card'),
);
data里面的数据需要插入到两张表 表一 表二 里面去,模型的方法不知道怎么写,求帮助 |
|