0% found this document useful (0 votes)
23 views1 page

Tutorial: Static Pages News Section Create News Items Conclusion

This tutorial introduces the CodeIgniter framework and MVC architecture. It shows how to construct a basic news application with CodeIgniter by creating static pages, reading news items from a database, and adding a form to create database news items. The tutorial focuses on MVC basics, routing, form validation, and performing database queries using Query Builder. It is split across several pages that cover an introduction, static pages, the news section, creating news items, and a conclusion.

Uploaded by

kadokita17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

Tutorial: Static Pages News Section Create News Items Conclusion

This tutorial introduces the CodeIgniter framework and MVC architecture. It shows how to construct a basic news application with CodeIgniter by creating static pages, reading news items from a database, and adding a form to create database news items. The tutorial focuses on MVC basics, routing, form validation, and performing database queries using Query Builder. It is split across several pages that cover an introduction, static pages, the news section, creating news items, and a conclusion.

Uploaded by

kadokita17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

Tutorial

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.
In this tutorial, you will be creating a basic news application. 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, youll add a form to create news items in the database.
This tutorial will primarily focus on:
Model-View-Controller basics
Routing basics
Form validation
Performing basic database queries using Query Builder
The entire tutorial is split up over several pages, each explaining a small part of the functionality of
the CodeIgniter framework. Youll go through the following pages:
Introduction, this page, which gives you an overview of what to expect.
Static pages, which will teach you the basics of controllers, views and routing.
News section, where youll start using models and will be doing some basic database
operations.
Create news items, which will introduce more advanced database operations and form
validation.
Conclusion, which will give you some pointers on further reading and other resources.
Enjoy your exploration of the CodeIgniter framework.

You might also like