Esc to close Ctrl + K to open anytime
Uncategorized

CodeIgniter – MVC Framework

CodeIgniter is based on the Model-View-Controller (MVC) development pattern. MVC is a software approach that separates application logic from presentation. […]

CodeIgniter – MVC Framework

CodeIgniter is based on the Model-View-Controller (MVC) development pattern. MVC is a software approach that separates application logic from presentation. In practice, it permits your web pages to contain minimal scripting since the presentation is separate from the PHP scripting.

The Model represents your data structures. Typically, your model classes will contain functions that help you retrieve, insert and update information in your database.

View

The View is information that is being presented to a user. A View will normally be a web page, but in CodeIgniter, a view can also be a page fragment like a header or footer. It can also be an RSS page, or any other type of “page”.

Continue Reading

You've reached the end of the free preview. Subscribe free to unlock the rest of this article.

Discussion (0)

admin

admin

Contributor