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

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…
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.

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…

jQuery Login Form with Sliding effects Style
Simple login form with jQuery sliding effects for any web page. Just put it to your header file. Instead of using any login page use this jQuery form to…

My Web Development ToolKit – 2018
If you are a web developer then you must be aware that how fast the technology and tools are changing in web development field. As a full-stack web developer…

Fresh: Ajax Heart Rating System with JQuery and PHP
This is another Rating System and Im sure you can get many awesome rating and voting script at 99Point.info I used animate() function of jQuery to get some stylish effect.When I…
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="” />