المشاركات

عرض الرسائل ذات التصنيف CodeIgniter File Upload

Upload Multiple Images & Files in CodeIgniter Example

صورة
Hi! In this post, we'll see how to upload multiple images and files in codeigniter . Kodingmadesimple has a nice tutorial about codeigniter file upload process. Normal file uploading has a limitation which is you can only upload a single file/image at a time. What if you want to upload multiple files or images in codeigniter in one go? Is it possible to do that? The answer is YES! You can! Here I'll show you an example about multiple file upload in codeigniter. CodeIgniter Upload Multiple Files/Images: For this file uploading process you'll need a folder in the server to store all your uploaded files. Just create a folder named 'uploads' inside the application root and make sure to enable 'write' access to it. Next you need to create user interface to upload files. So create a code igniter view with a form and add file control & submit button to it. Set the name of the file field as array and add 'multiple' attribute to enable mult...

Simple Image and File Upload in CodeIgniter with Validations & Examples

صورة
Codeigniter provides a wide number of helper class and libraries for rapid application development. Upload library is one among them that makes file uploading process in Codeigniter a breeze. We'll see how to do file and image upload in codeigniter in this tutorial. File and Image uploading are similar since images are themselves files. But there are options for you to restrict the uploading process specific to images files alone and we'll see it below. File Upload in CodeIgniter First of all, we need a destination folder to store all the uploaded files. So create a folder named 'uploads' in the root folder. Make sure it is writable for the uploading process to work. Read Also: How to Create Login Page in CodeIgniter & MySQL How to Send Email in CodeIgniter using Gmail CodeIgniter Pagination System using Bootstrap Create Controller Create a controller file 'uploadfile.php' inside 'application\controllers' folder in codeigniter. ...