Joël Cox | 3bf17fb | 2011-10-09 19:20:12 +0200 | [diff] [blame^] | 1 | Tutorial − Introduction |
| 2 | ======================= |
| 3 | |
| 4 | This tutorial is intended to introduce you to the CodeIgniter framework |
| 5 | and the basic principles of MVC architecture. It will show you how a |
| 6 | basic CodeIgniter application is constructed in step-by-step fashion. |
| 7 | |
| 8 | In this tutorial, you will be creating a **basic news application**. You |
| 9 | will begin by writing the code that can load static pages. Next, you |
| 10 | will create a news section that reads news items from a database. |
| 11 | Finally, you'll add a form to create news items in the database. |
| 12 | |
| 13 | This 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 | |
| 20 | The entire tutorial is split up over several pages, each explaining a |
| 21 | small part of the functionality of the CodeIgniter framework. You'll go |
| 22 | through 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 | |
| 35 | Enjoy your exploration of the CodeIgniter framework. |