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
zGrid: Best PHP/AJAX Grid System. Good for Newbie web developers
Few days ago I have developed a Grid system using PHP, jQuery and Ajax. I want to share this with my dear users. It is not very well parametrized…
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.

Youtube Style Share Button With URL Shortening using CURL, jQuery and PHP.
These days every website must contain a section that is called “Share This”. After creating facebook style posting and youtube style rating system I have now come to share…
Send Email from your Gmail account Using Codeigniter.
Codeigniter provides many built in helpers and libraries which help us to perform lot of functionality for developing projects. Here a simple email library make us able to send…

Ajax Pagination: Fresh Ajax pagination using PHP jQuery and mySQL. Part 3
Today i am going to build a simple ajax based pagination system with overlay loader to put some attractive look. Demo and code available.

Ajax Rating System: Create Simple Ajax Rating System using jQuery AJAX and PHP.
Simply programmed, CSS based stylish Ajax rating system which you can use any where to put a stylish jquery effect based rating system.
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="” />