Codeigniter has a number of libraries and helpers which you can use for making your code reliable and bugs free. CI provides an extensive library of common usage classes. Upload class in Codeigniter provides us a simple and easy way for uploading files on server.
Similar Posts
Send Email from your Gmail account Using Codeigniter.
Codeigniter provides many built in helpers and libraries which help us to perform lot of functionality for developing projects. Here a simple email library make us able to send…
Learn Codeigniter PHP framework: Basic working Structure
Codeigniter is very light and fully featured framework which gives you every thing which you want in web development. It is a powerful PHP framework with very small footprint….

Super jQuery Image Gallery with Random Animation Effects.
An image gallery is now a day is very attractive and important part of any website. JQuery image sliding effects and image galleries are very common these days….

How To: Create jQuery Login Form with Animated validation Effect.
I will show you how to create a simple jquery validation based login form. Some animation is used to get effects and its simple and easy to use.

Configuring codeigniter framework on your localhost.
If we move to any framework or platform first time then first problem is configuring this technology. Configuring codeigniter to our localhost is so simple and easy. I am…

Ajax Tutorial: How to Create Ajax Search Using PHP jQuery and MYSQL
This tutorial shows how to create simple and attractive Ajax based search using PHP, jQuery, MySQL and Ajax.
2 Comments
Comments are closed.
Thank you for your post i want to know how to insert a image name
/*— Controller —*/
$data = array(‘upload_data’ => $this->upload->data());
$this->load->view(‘your-upload-page’, $data);
/*— View –*/
echo $upload_data[‘file_name’]; //this will output the image name
echo $upload_data[‘image_size_str’]; //this will output the width and the height of the image
<img src="” />