Ajax sessions Fix CodeIgniter
For the most recent stable release of CodeIgniter (2.1.3), there is a rather annoying simultaneous request problem that will kill active sessions. You might have experienced this yourself if you had a website or...
For the most recent stable release of CodeIgniter (2.1.3), there is a rather annoying simultaneous request problem that will kill active sessions. You might have experienced this yourself if you had a website or...
What is REST ? REST stands for Representational State Transfer . In very simple terms, In REST we have basically two broader actions Request and Response. Client will send the request to the REST API in a data...
This post will treat the case of one record treatment and counting in active record through the CodeIgniter’ core. Suppose you are displaying a user’s profile. It’s good practice to store all database queries...
CodeIgniter Hierarchical Model-View-Controller (HMVC) breaks down an application into manageable smaller components. The best analogy for this is your PC computer. A PC has smaller parts like power supply, microprocessor, hard disk, mouse, keyboard...
CodeIgniter uses a modified version of the Active Record Database Pattern. This pattern allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two...
Usually when you are building a program, the login/logout functionality is a must we always have to go through, so this quick tutorial will focus on this functionality, taking advantage of the benefits of...