Tag: codeigniter 3

  • CodeIgniter 3.0.1 Tutorial 3 – Getting Rid of “index.php” from URL (with download)

    In the previous tutorial, you learnt about the purpose of each and every folder in the “/application/” folder of your web applicaiton. This is a short tutorial in which you will learn how to get rid of the “index.php” from the URL of your web application using a .htaccess file. Problem In a default installation of CodeIgniter 3, […]

  • 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 […]