blob: a0ed53c859049fd3a98709882a5aa8ed3c521e85 [file] [log] [blame]
Joël Cox3bf17fb2011-10-09 19:20:12 +02001Tutorial Introduction
2=======================
3
4This tutorial is intended to introduce you to the CodeIgniter framework
5and the basic principles of MVC architecture. It will show you how a
6basic CodeIgniter application is constructed in step-by-step fashion.
7
8In this tutorial, you will be creating a **basic news application**. You
9will begin by writing the code that can load static pages. Next, you
10will create a news section that reads news items from a database.
11Finally, you'll add a form to create news items in the database.
12
13This tutorial will primarily focus on:
14
15- Model-View-Controller basics
16- Routing basics
17- Form validation
18- Performing basic database queries using "Active Record"
19
20The entire tutorial is split up over several pages, each explaining a
21small part of the functionality of the CodeIgniter framework. You'll go
22through the following pages:
23
24- Introduction, this page, which gives you an overview of what to
25 expect.
26- `Static pages <static_pages.html>`_, which will teach you the basics
27 of controllers, views and routing.
28- `News section <news_section.html>`_, where you'll start using models
29 and will be doing some basic database operations.
30- `Create news items <create_news_items.html>`_, which will introduce
31 more advanced database operations and form validation.
32- `Conclusion <conclusion.html>`_, which will give you some pointers on
33 further reading and other resources.
34
35Enjoy your exploration of the CodeIgniter framework.