Codeigniter multiple file upload messes file extension

Faced the exact similar stuff 2 days ago but did it the old fashioned way hope it helps. try this .. function tester(){ $this->load->library(‘upload’); // NOTE: always load the library outside the loop $this->total_count_of_files = count($_FILES[‘filename’][‘name’]) /*Because here we are adding the “$_FILES[‘userfile’][‘name’]” which increases the count, and for next loop it raises an exception, … Read more