Book Image

CodeIgniter Web Application Blueprints

Book Image

CodeIgniter Web Application Blueprints

Overview of this book

Table of Contents (16 chapters)
CodeIgniter Web Application Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Introduction


Right; in this project, we will create an application that allows users to create tasks and view these tasks as a list. Tasks can also have a due date; late tasks will appear in red so that you know it's important to execute that task as soon as possible.

To create this app, we will create one controller; this will handle the displaying of tasks, creating these tasks, setting these tasks as done or still to do, and handling the deletion of these tasks.

We'll create a language file to store the text, allowing you to have multiple language support should that be required.

We'll create all the necessary view files and a model to interface with the database.

However, this app along with all the others in this book, relies on the basic setup we did in Chapter 1, Introduction and Shared Project Resources; although you can take large sections of the code and drop it into pretty much any app you might already have, please keep in mind that the setup done in the first chapter acts as a foundation...