Welcome Guest, Not a member yet? Register   Sign In
Multiple file upload
#4

[eluser]pickupman[/eluser]
You probably need to make sure you named you input names the same as an array.
Code:
<label for="userfile">Choose File</label>
&lt;?php echo form_upload('userfile[]');?&gt;<br/>
<label for="userfile">Choose File</label>
&lt;?php echo form_upload('userfile[]');?&gt;<br/>

//Controller
if(isset($_FILES['userfile'])){
   $files = $this->input->post('userfile');

   foreach($files as $file){
       //Do something here with the $file
   }
}


Messages In This Thread
Multiple file upload - by El Forum - 10-19-2010, 05:38 PM
Multiple file upload - by El Forum - 10-19-2010, 05:47 PM
Multiple file upload - by El Forum - 10-19-2010, 06:23 PM
Multiple file upload - by El Forum - 10-19-2010, 07:09 PM
Multiple file upload - by El Forum - 10-19-2010, 07:25 PM
Multiple file upload - by El Forum - 10-20-2010, 07:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB