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

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.
What is Google API and How it works?
Google API is a great set of developer’s tools. These tools make programmers able to perform operations using google API and living within their development framework.
How can We verify Captcha with Ajax in Codeigniter?
Captcha is necessary part of any form. But if we see with end user point of view, a user feels bad when he/she has to give a right verification…

CSS | JQuery | Miscellaneous | Web Design
Learn How to Create Super CSS3 and jQuery Based Menus
In this post I will create a simple CSS3 and JQuery based menus. You can find another jQuery menu tutorial on this blog and it is next part…

Create Animated Tabs using JQuery and CSS.
Tabs is used for utilizing space and keep some stylish effects on website. jQuery tabs are very popular and it created some fancy look on web pages. I created…
Live Query Plugin: Solution of your problems in jQuery
Some one asked me about the solution of binding events to dynamically generated elements. And one name came in my mind that is LiveQuery. If you have used jQuery…
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="” />