MY_Upload icon indicating copy to clipboard operation
MY_Upload copied to clipboard

An addition to the CI_Upload, that allows for multiple files upload.

Results 3 MY_Upload issues
Sort by recently updated
recently updated
newest added

For single file upload the `data()` function returns single dimensional `array` and for multiple uploads the `data()` returned multidimensional `array` The problems was we have to check the `array` before...

**HTML** ``` file1: file2: ``` **PHP** ``` $this->upload->do_upload('userfiles1) ; var_dump($this->upload->data()); $this->upload->do_upload('userfiles2'); var_dump($this->upload->data()); ``` **first var_dump output given below** ``` array (size=2) 0 => array (size=14) 'file_name' => string 'G_90935184.jpg' (length=14)...