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
Create Simple Rounded News Scroller using Mootools.
Mootools is very easy to use library and has a large number of functionalities which reduce lot of our work to do. News scroller is used to put a…
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….
30 Top Codeigniter best Tutorials You must want to know.
Code Igniter is best framework and has an extensive community to help you always. Lot of tutorials are available online. Here i have given some best tutorials.

AJAX | JQuery | Miscellaneous | PHP Tutorials
AJAX Pagination using jQuery and PHP with Animation
I have created an Ajax JQuery based pagination few months before which my users liked very much and there are thousands of downloads of that tutorial. So, I…
7 Amazing JQuery Lightbox Script which you Always Need.
JQuery plugins becomes most useful when you need to implement a pretty layout to your pages. Working as an interactive web developer i often use JQuery scripts to put…

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…
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="” />