Become Our Fan on Social Sites!

Facebook Twitter

Google+ RSS YouTube
Showing posts with label PHP-Framework. Show all posts
Showing posts with label PHP-Framework. Show all posts

Saturday, 15 March 2014

CodeIgniter Table Class Example

We can create table using HTML table tag. But in CodeIgniter, there is a Table Class to create table. It is not mandatory to use this Table Class, we can use simple HTML table tag also. CodeIgniter Table Class Example This Table Class provides facility of creating table from arrays or database query result set. 1. How...

Thursday, 13 March 2014

CodeIgniter Reserved Names

This post is about Reserved Names in CodeIgniter. Reserved names are names that are used in internal operations and developer can not use that names. Reserved Names CodeIgniter In CodeIgniter, some controller names, function names, variable names, and constant names are reserved, so developer/programmer can not use that names. ...

Tuesday, 11 March 2014

How To Create Session In CodeIgniter

1. What is Session? Session maintains a user's state and tracks user's activity while user browse the website. We have to maintain session manually because HTTP is a stateless protocol. Session Creation In CodeIgniter 2. Session Initialization To avail session in all pages of website then first we have to initialize Session...

Thursday, 20 February 2014

How To Configure Database In CodeIgniter

Hello friends, I am telling you about how to configure/set database in CodeIgniter. CodeIgniter framework contains many configuration files. Database Configuration in CodeIgniter...

Sunday, 2 February 2014

Hello World Program in CodeIgniter

Hello friends, here is another post about CodeIgniter first program. Before we learn how to create Hello World program in CodeIgniter, first we have to understand what is Controller? 1. What is Controller? Controller is a class that works as intermediary between Model and View. In CodeIgniter, Controller runs first then Controller...

Sunday, 19 January 2014

CodeIgniter Basic Tutorial

1. What is CodeIgniter? CodeIgniter is a powerful, proven, agile & open web application framework for to build dynamic websites using PHP. CodeIgniter is developed by EllisLab, Inc. And its initial release is February 28, 2006. We can find everything about CodeIgniter from official website of CodeIgniter: http://www.ellislab.com/codeigniter. CodeIgniter...