Category: Uncategorized

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

  • Laravel Tutorial 1 : Installation in XAMPP

    Lets get it straight. “You want to install Laravel”. With this tutorial, I am starting a Laravel series. My tutorials are short and to the point. So lets get started without any fuss. Prerequisites Download Composer or visit their official website. Select “Install Shell Menus” in setup as shown. Press Next and point the setup to  the […]

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