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 jQuery Form with Progress bar and Input Limiter
Simple jQuery progress bar on form to show characters length with input limiter functionality. Demo available with downloads.

CSS | JQuery | Miscellaneous | PHP Tutorials | Web Design
Stylish Animated Login and Signup Form with JQuery and CSS3
Check out an amazing animated and stylish login/register jquery form that is simple to use. I put some animation which adds some attractive looks. If anyone needs this form…

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…
AJAX | JQuery | Miscellaneous | PHP Tutorials | Tutorials | Web Design
Ajax Shopping Cart: Create a Stylish Shopping Cart Using JQuery and PHP
You have seen many Ajax and JQuery-based shopping cart examples over the internet. I have created here a JQuery-based shopping cart that doesn’t call any Ajax request but saves…
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…
AJAX | JQuery | Miscellaneous | PHP Tutorials | Tutorials
reCaptcha style Captcha with JQuery and PHP
This tutorial is about creating a captcha same to Recaptcha. I used CSS and PHP for this. You can find a few tutorials about creating and integrating captcha/Recaptcha in…
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="” />