Multiple file upload in codeigniter

Leave a Comment
Hello guy's, Today we gonna look how to upload Multiple file image with codeigniter. After single image upload with codeigniter. We gonna look multiple image upload in codeigniter. First we gonna look multi upload with same controller function after we move that function into helper so we can use somewhere else also. So let's start with controller file Multi_upload.php (controller) <?php if ( ! defined('BASEPATH')) exit('No direct...

How to upload image in codeigniter

Leave a Comment
Hello guy's, Today we gonna look how to upload image with codeigniter. In this tutorial we will use CodeIgniter's File Uploading Class which help to upload file. Using this class we can also set various preferences, restricting the type and size of the files. Creating the Upload Form i.e. image_upload.php (View) <html> <head> <title>Upload Form</title> </head> <body> <?php echo form_open_multipart('image_upload/do_upload');?> <input...
Powered by Blogger.