Welcome Guest, Not a member yet? Register   Sign In
Multi Upload return TRUE
#1

Hi CI Members,

I have issue when I submit form without upload any image and system not detect the input is empty,
But when I remove "[]" in name is work.

I hope CI Members can help me to solve my issue.

Code:
<input type="file" class="form-control-file" id="preview_image" name="preview_image[]" multiple>


PHP Code:
if (isset($_FILES['preview_image']['name'])
 
       && ($_FILES['preview_image']['name'] != '' || is_array($_FILES['preview_image']['name']) && count($_FILES['preview_image']['name']) > 0)) {
 
       if (!is_array($_FILES['preview_image']['name'])) {
            
            
//Upload Code
    
}

 
   return (bool) $totalUploaded

Thanks you...
Reply
#2

Maybe this will help you out.

How to upload Multiple Files and Images in CodeIgniter
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

Hi InsiteFX,

Thanks because try to help me.

Problem solved already..
PHP Code:
if ($_FILES["preview_image"]['name'][0] !== '') { 

Thanks
Reply




Theme © iAndrew 2016 - Forum software by © MyBB