In This Tutorial, We learn how to install CodeIgniter . Followings are steps to install Codeigniter: Step 1: Download Codeigniter from https://codeigniter.com/download. There are two different options legacy and latest. The names itself are self descriptive. legacy has version less than 2.x and latest has 3.0 version. Step 2: Next step is to unzip the … Continue reading Codeigniter Installation
Month: February 2018
Following are steps to install laravel in localhost server: Step 1: Visit the following URL and download composer to install it on your system. https://getcomposer.org/download/ Step 2: Open command prompt and browse to web server root directory or localhost folder (Assuming you have installed WAMP server in C:\wamp , open C:\wamp\www). Step 3: Type the following … Continue reading Laravel Installation
Followings are list of basic Concepts in Laravel: Routing Controllers Views Blade templating Requests and Responses Models & Migrations Middleware Eloquent ORM Routing: Routing means to accept the request and redirect it to appropriate function. Routing is a core concept in Laravel, and it works a little differently than some of the frameworks of the … Continue reading Laravel Basic Concepts