Helper in codeigniter

Leave a Comment
Helpers, What is Helpers as the name suggests, help you with your work. Codeigniter helpers are do same thing. CodeIgniter has more than 20 helpers. Each helper file is simply a collection of functions in a particular category. Most of codeigniter helpers you use in your project. There are URL Helpers, that assist in creating links, there are Form Helpers that help you create form elements, Text Helpers perform various text formatting routines, Cookie Helpers set and read cookies, File Helpers help you deal with files, etc. Unlike...

Send Email With Attachment Codeigniter

Leave a Comment
After Send email with codeigniter and Send email with codeigniter and smtp today we gonna look how to send email with attachment. Before we start i hope you know how to upload image in codeigniter. Because this tutorial is combination of the send email with codeigniter and upload image or attachment in folder. So let's start with controller i.e. Send_email.php <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class...

Ajax Pagination in Codeigniter

Leave a Comment
We already did normal Pagination With Codeigniter. If you don't know how pagination is work in codeigniter then please go through first that tutorials. In previous tutorial we already created all needed file for our pagination so let's continue with those files. Below image was our file structure. For ajax pagination let's update our controller file i.e. pagination.php <?php if ( ! defined('BASEPATH')) exit('No direct script...

Multiple file upload in codeigniter

Leave a Comment
Hello guy's, Today we gonna look how to upload Multiple file image with codeigniter. After single image upload with codeigniter. We gonna look multiple image upload in codeigniter. First we gonna look multi upload with same controller function after we move that function into helper so we can use somewhere else also. So let's start with controller file Multi_upload.php (controller) <?php if ( ! defined('BASEPATH')) exit('No direct...

How to upload image in codeigniter

Leave a Comment
Hello guy's, Today we gonna look how to upload image with codeigniter. In this tutorial we will use CodeIgniter's File Uploading Class which help to upload file. Using this class we can also set various preferences, restricting the type and size of the files. Creating the Upload Form i.e. image_upload.php (View) <html> <head> <title>Upload Form</title> </head> <body> <?php echo form_open_multipart('image_upload/do_upload');?> <input...

How to create a 404 page in CodeIgniter

Leave a Comment
This post is about creating a custom 404 page in CodeIgniter. There are so many reasons for having 404 page. Because you cannot avoid user typing incorrect URL pointing to a page on your domain which doesn't exists. Also there is some website can link to some url on website which no longer valid. Codeigniter provides it's own 404 page which is ok. But we can create our own custom 404 page.CodeIgniter provides an easy way to build a custom 404 (Page-not-found) page. Here is the step by step on setting up a 404...

PHP With MySQL For Beginners Day 1

Leave a Comment
What is php? PHP is a server scripting language. Now you may have thought that PHP was a programming language. Well, technically speaking, it's not. So how's a scripting language different from a programming language? A script only runs in response to an event. It also usually runs a set of instructions by working down the page from the start to the end. It has little or no user interaction after that initial event. So PHP script...

Deploy app on heroku

Leave a Comment
Deploying your first app on heroku Follow this steps to deploying your first app on heroku Step 1 Creating account on heroku Step 2 Confirm your account After confirming your you will get screen to change your password Step 3 Change you password After that you will get welcome screen Click on proceed you will get this screen Step 4 Click on plus sign on right side of browser screen After click on create...
Powered by Blogger.