In codeigniter 2 I have to do a multiple file upload.

In my view input elements looks like this

<input type="file" name="file[]" id="file_1" />
<input type="file" name="file[]" id="file_2" />
<input type="file" name="file[]" id="file_3" />
<input type="file" name="file[]" id="file_4" />
<input type="file" name="file[]" id="file_5" />
<input type="file" name="file[]" id="file_6" />

Plese help me how to write the controller to upload these files .. googled a lot .. Thanks in advance

link|improve this question

80% accept rate
1  
and what did Google say? What have you tried? Wat does $_FILES say? – giorgio Feb 14 at 12:21
1  
Tried anything? Post your code so far. Also, you can find many similar questions here on SO; doing a multiple upload witht he native upload class is almost just a matter of using a loop. For example, stackoverflow.com/questions/1908247/… – Damien Pirsy Feb 14 at 12:24
in my controller i just wrote $images=$_FILES['file']; $res=$this->admins->addPlace($insertdata,$images); and it just send it to my admins model. There I am stucked with the loop .. please help – ramesh Feb 14 at 12:24
feedback

1 Answer

up vote 0 down vote accepted

You can upload any number of files

$config['upload_path'] = 'upload/Main_category_product/';
            $path=$config['upload_path'];
            $config['allowed_types'] = 'gif|jpg|jpeg|png';
            $config['max_size'] = '1024';
            $config['max_width'] = '1920';
            $config['max_height'] = '1280';
            $this->load->library('upload');

            foreach ($_FILES as $key => $value)
            {


                if (!empty($key['name']))
                {


                    $this->upload->initialize($config);
                    if (!$this->upload->do_upload($key))
                    {

                        $errors = $this->upload->display_errors();


                        flashMsg($errors);

                    }
                    else
                    {
                         // Code After Files Upload Success GOES HERE
                    }
                }
            }
link|improve this answer
Hi thanks for the reply and I am getting this error... Please help A PHP Error was encountered Severity: Notice Message: Array to string conversion Filename: libraries/Upload.php Line Number: 161 – ramesh Feb 14 at 13:14
1  
have u tried exact code? – srbhbarot Feb 14 at 13:18
Hi srbhbarot .. Please find my below answer .. The error I got .. Please help – ramesh Feb 14 at 13:22
Sorry I cant answer my self .. Now I am getting this error You did not select a file to upload. – ramesh Feb 14 at 13:23
Always try a code with low level of test data. First change your name of file tags to anything file1,file2.... and then try with minimum size of images. – srbhbarot Feb 14 at 13:29
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.