我在控制器的这一行中获取所有数据字段,因为我的表fielname和html输入名称相同。
$post= $this->input->post();
但现在问题是,我还想添加图像路径以保存在DB中。对于图像路径,我需要定义动态选择中不可能的图像路径,但在定义路径后,其他字段的插入失败。
图片代码为“
function add_image(){
$post= $this->input->post();
if($this->form_validation->run('add_product') && $this->upload->do_upload('img1')){
$img1= base_url("uploads/".$data['raw_name'].$data['file_ext']);
$post['img1']=$img1;
$post= $this->input->post();
if($this->add->add_product($post)==TRUE){
$this->db->close();
$this->session->set_flashdata('success','Product has been added successfully');
return redirect('admins/pages/add_product_page');
} elese {
echo 'failled';
}
}