-
Book Overview & Buying
-
Table Of Contents
CodeIgniter Web Application Blueprints
By :
As always, before we start building, we should take a look at what we plan to build.
Firstly, a brief description of our intent: we plan to build an app that will allow people to add tasks that they need to do. It will also allow users to view these tasks as a list and set them as done. They can also delete old or unneeded tasks should they wish.
Anyway, to get a better idea of what's happening, let's take a look at the following site map:

So that's the site map; the first thing to notice is how simple the site is. There are only four main areas to this project. Let's go over each item and get a brief idea of what it does:
View All: This displays a form to create a task and also displays all tasks in a list
Create: This processes the creation of tasks saved to the database
Done/Not Done: This sets a task to either done or to-do
Delete: This removes the task from the database
Now that we have a fairly good idea of the structure and form of the site, let's take a look at...