Can someone help me out to upload multiple file from a single form. If possible please give some example. I have go through several places over internet but didn't find any solution. Below is my code in model for upload function it works fine for single upload, but doesn’t work for multiple uploads from a single form.
function upload(){
$config[$a]=array(
'allowed_types'=>'xlsx',
'upload_path'=> $this->gallery_path,
'overwrite'=>true,
'max_size'=>2000,
);
$this->load->library('upload',$config);
$this->upload->do_upload();
}
Thanks in advance.