Tag: PHP

  • CodeIgniter 3 Tutorial 1: Download, Installation, Introduction and Welcome!

    Back to CodeIgniter Tutorials This is the first part of CodeIgniter 3 tutorials. CodeIgniter 3.0 introduced a lot of upgrades over 2.x versions of CodeIgniter. Users who wish to upgrade to CodeIgniter 3 may have to perform changes as mentioned here in the official CodeIgniter 3.0 documentation. Here are my Tutorials for CodeIgniter: CodeIgniter 3 Tutorials […]

  • Codeigniter 2.20 – Sending E-mail using codeigniter

    Back to CodeIgniter Tutorials In CodeIgniter, sending e-mail is a simple process. First the library is loaded. Then the user provides e-mail related data. Finally, the E-mail is sent. Here is how E-mail is sent using a Controller in CodeIgniter Load the E-mail library of CodeIgniter $this->load->library(’email’); Provide set of characters that are to be […]

  • Codeigniter 2.20 – Learn how to make live search using Codeigniter

    Codeigniter 2.20 – Learn how to make live search using Codeigniter

    Back to CodeIgniter Tutorials You may have seen live search <input> boxes all over the internet. Here is how to make that live search in reference to the design of the following image using Codeigniter 2.20 and 3.0. This technique will use the following steps. User types in an input box. A call is sent to controller […]

  • Codeigniter 2.20 – Making your own home page

    Codeigniter 2.20 – Making your own home page

    Back to CodeIgniter Tutorials Now that  you have learned how to install codeigniter, it would be prefereable to replace the default codeigniter welcome page by something that we have made. By the end of this tutorial, when you will visit localhost/yourapp you will be presented with your own home page instead of the the default codeigniter Welcome page. Install Codeigniter […]

  • CodeIgniter 2.20 – How to set up in XAMPP

    CodeIgniter 2.20 – How to set up in XAMPP

    This is the first part of the CodeIgniter 2.20 tutorials series. In this part, you will learn how simple it is to install CodeIgniter in XAMPP. Lets assume that the web application you are making is “yourapp”. First go to CodeIgniter website and download it. Now go to your www or htdocs folder in XAMPP and create […]

  • Codeigniter 2.20 – How to manage assets (js, jpg etc) (using View)

    Back to CodeIgniter Tutorials In this guide, you will learn to use CSS and JS files by calling them from the VIEW (not the controller). In the coming lessons, I will also write on importing assets using Controller but here, we are using views. First, install Codeigniter using the method as described here. Then make your […]