CodeIgniter Forums
Multiple file uploads - 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: Multiple file uploads (/showthread.php?tid=11673)

Pages: 1 2 3 4


Multiple file uploads - El Forum - 02-29-2012

[eluser]manisha[/eluser]
Hi Hein,

Thanks for immediate reply...
Yes I have used (enctype=multipart/form-data) for my form...




Multiple file uploads - El Forum - 02-29-2012

[eluser]manisha[/eluser]
It get resolved.... It was the place of <form> tag which was causing the problem as my form was containing other fields as well( embedded in table structure ) along with file input field .... So I placed <form action="upload/do_upload" method="post" enctype="multipart/form-data"> tag immediately after <body> tag...

So now I am getting values in $_FILES when I submit the form....

Thanks...