Skip to main content

Posts

Showing posts with the label Beginners

CodeIgniter Tutorial for Beginners

MVC stands for Model View Controller . The model view controller pattern is the most used pattern for today’s world web applications. At present, there is more than a dozen PHP framework based on MVC pattern. The MVC pattern separates an application in 3 modules: Model, View, and Controller. The Model is responsible for managing the data. The View is responsible for displaying the data provided by the model in a specific format. The Controller handles the model and view layers to work together. CodeIgniter is one of the most popular PHP framework and it follows the MVC pattern. Web Developer can be able to build full-featured web applications with CodeIgniter. This tutorial is aimed to introduce the CodeIgniter framework and step-by-step setup & installation guide for the beginners. In this tutorial, beginners will be able to learn the CodeIgniter development process from the scratch and create a basic CodeIgniter application. Our step by step tutorial helps web developers t...