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
New Twitter Like Application with JQuery and PHP
Are you looking for a New Twitter design clone? Then you are at the right place here at 99points.info I have created a new Twitter-style header with a fancy…
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…
PHP Encrypt/Decrypt: Simple class to encrypt url data
Encryption is useful where critical data is being transferred in url. I have found a simple and secure encryption class with some changes to make it fit for new…

Live Username Availability Checking using Ajax and jQuery. Demo Available
Simple script to check username availability using jQuery and Ajax. Try out demo and use it. I used gif loader and jquery fade in effects to make it fit….

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…

10 very Useful and most popular Joomla Extensions.
Joomla is a very excellent CMS that is widely used in web development. It is the most attractive CMS because of its expandability. Here are some of the popular…
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="” />