![]() |
how to handle multiple file upload with upload library - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: how to handle multiple file upload with upload library (/showthread.php?tid=37078) |
how to handle multiple file upload with upload library - El Forum - 12-27-2010 [eluser]runrun[/eluser] Hi guys, My controller is pretty basic, I just want to see the upload work Code: class Fast extends Controller { And below is the php the author of the upload script provided, I didn't use it in my controller, because I already utilize the native upload library. Code: <?php Here is my test link http://www.vietnamlist.net/play/fast The problem: the upload library doesn't save file to designated folder (pic folder). I guess the library was not prepared for multiple files upload or I'm not good enough to make it work ? how to handle multiple file upload with upload library - El Forum - 12-27-2010 [eluser]Federico BaƱa[/eluser] change $this->upload->do_upload(); for ...do_upload('file') how to handle multiple file upload with upload library - El Forum - 12-27-2010 [eluser]runrun[/eluser] work beautifully thanks. |