-1
這是我的代碼,我的照片無法插入數據庫。我不知道問題出在哪裏。CodeIgniter我的照片無法插入數據庫
控制器:
public function add_gambar()
{
$config['upload_path'] = './assets/img/';
$config['allowed_types'] = 'jpg|png';
$config['max_size'] = '2000';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if (!$this->upload->do_upload('gambar'))
{
$this->Gambarhome_model->tambah_gambar_error();
redirect('gambarhome/','refresh');
}
else
{
$this->Gambarhome_model->tambah_gambar();
redirect('gambarhome/','refresh');
}
}
型號:
function tambah_gambar(){
$date = $this->upload->data();
$data=array(
'judul'=>$this->input->post('judul'),
'desc'=>$this->input->post('desc'),
'gambar'=>$date['file_name']
);
$this->db->insert('gambarhome',$data);
}
有人幫我請,謝謝!