diff options
author | Joël Cox <joel@joelcox.nl> | 2011-08-23 14:54:42 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:43:45 +0200 |
commit | b430ecd00aaa80c63734b508c82501bec3a0b703 (patch) | |
tree | ba68b391890b86e487c44ecc628d5e4be314f0ee /user_guide/tutorial/introduction.html | |
parent | f27bcf350d18048d91d8a607520d19f0c8e11f41 (diff) |
Bumped the version number, corrected spelling mistakes (thanks @chrisberthe) and added links to the tutorial pages in the introduction.
Diffstat (limited to 'user_guide/tutorial/introduction.html')
-rw-r--r-- | user_guide/tutorial/introduction.html | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/user_guide/tutorial/introduction.html b/user_guide/tutorial/introduction.html index cb91f4856..78fd00b61 100644 --- a/user_guide/tutorial/introduction.html +++ b/user_guide/tutorial/introduction.html @@ -28,7 +28,7 @@ <div id="masthead"> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> -<td><h1>CodeIgniter User Guide Version 2.0.2</h1></td> +<td><h1>CodeIgniter User Guide Version 2.0.3</h1></td> <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td> </tr> </table> @@ -59,9 +59,7 @@ Introduction <h1>Tutorial − Introduction</h1> -<p>This tutorial is intended to introduce you to the CodeIgniter framework and the basic principles of MVC architecture. - It will show you how a basic CodeIgniter application is constructed in step-by-step fashion. -</p> +<p>This tutorial is intended to introduce you to the CodeIgniter framework and the basic principles of MVC architecture. It will show you how a basic CodeIgniter application is constructed in step-by-step fashion.</p> <p>In this tutorial, you will be creating a <strong>basic news application</strong>. You will begin by writing the code that can load static pages. Next, you will create a news section that reads news items from a database. Finally, you'll add a form to create news items in the database.</p> @@ -73,6 +71,17 @@ Introduction <li>Performing basic database queries using "Active Record"</li> </ul> +<p>The entire tutorial is split up over several pages, each explaining a small part of the functionality of the CodeIgniter framework. You'll go through the following pages:</p> +<ul> +<li>Introduction, this page, which gives you an overview of what to expect.</li> +<li><a href="static_pages.html">Static pages</a>, which will teach you the basics of controllers, views and routing.</li> +<li><a href="news_section.html">News section</a>, where you'll start using models and will be doing some basic database operations.</li> +<li><a href="create_news_items.html">Create news items</a>, which will introduce more advanced database operations and form validation.</li> +<li><a href="conclusion.html">Conclusion</a>, which will give you some pointers on further reading and other resources.</li> +</ul> + +<p>Enjoy your exploration of the CodeIgniter framework.</p> + </div> <!-- END CONTENT --> |