How to multi-upload images in Codeigniter? [closed]

-5

I need to make a system to generate photo gallery, how to multi-upload in CodeIgniter?

    
asked by anonymous 06.02.2014 / 05:00

1 answer

2

To perform multiple uploads on Codeigniter you should use a library that gives your application its peculiarity.

I recommend SWFUpload link

Already for the uploads of the files follows the framework specification link. link

By downloading SWFUpload (SWFUpload v2.2.0.1 Samples.zip), in the demos directory, you will find the example with an upload.php file. In this file is where the changes will be made so that the same makes the process of upload using the framework.

[RECOMMEND]

However, with the advent of HTML5, using a library became optional.

Sample multi-uploads with html5 link

    
06.02.2014 / 11:53