1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| $config['upload_path'] = './assets/images/offre/boutiques/old/';
$config['allowed_types'] = 'jpg|png|gif';
$config['max_size'] = 10000;
$config['max_width'] = 1920;
$config['max_height'] = 1200;
$config['file_name'] = $image;
$config['overwrite'] = TRUE;
$this->load->library('upload', $config);
if (( ! $this->upload->do_upload('fileboutique')) AND ($this->form_validation->run() == FALSE))
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('Entetes/Entete', $data);
$this->load->view('Offres/Formulaire_offre', array('error' => ' ' ));
$this->load->view('Pied_page/Foot');
}
else
{
$data = array('upload_data' => $this->upload->data());
.
.
.
.
} |
Partager