
I was researching things ‘nerd’ on the Web today, and I found myself at the CodeIgniter website.
For those of you who may not know, CodeIgniter is an MVC PHP framework.
What is an MVC framework?
I won’t go into details here since we’ve covered MVC basics elsewhere. Let me just say though, that an MVC framework is a bunch of PHP code organized into a reusable structure/system designed to make building web applications easier.
MVC is short for:
- Model
- View
- Controller
The general idea is to keep code separated by it’s function.


