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


In this project, we will create an application that will allow users to sign up for a newsletter. A form will be displayed, inviting a user to enter their e-mail address, and then it will define a couple of settings to submit that form. It will also let subscribers alter their settings and even unsubscribe entirely.

To create this app, we will create one controller. This will handle all parts of the project: subscribing, editing settings, and unsubscribing.

We'll create a language file to store 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...