Home arrow PHP arrow Polishing the Visual Presentation of a Blogger with the Code Igniter PHP Framework

Polishing the Visual Presentation of a Blogger with the Code Igniter PHP Framework

This series of articles is aimed at demonstrating how to build a blog application with the Code Igniter PHP framework, which relies on the functionality offered by the MVC approach to create full-featured PHP programs. Thus, if you’re interested in learning how to build a program like this, then start reading this tutorial now! It is the fifth part of the six-part series.

TABLE OF CONTENTS:
  1. Polishing the Visual Presentation of a Blogger with the Code Igniter PHP Framework
  2. The blog application’s full source code so far
  3. Improving the blogger's visual presentation
  4. Listing the improved version of the blogger
By: Alejandro Gervasio
Rating: starstarstarstarstar / 2
January 06, 2009

print this article
SEARCH DEV SHED

TOOLS YOU CAN USE

advertisement

Introduction

Code Igniter is a robust PHP framework written in PHP 4 that permits you to build object-based web applications in a truly painless way with the Model-View-Controller pattern. By means of this approach, it’s possible to separate the application logic of a web-based program from its visual presentation, which contributes to developing applications that are much more maintainable and modular.

Of course, all of these benefits sound pretty good in theory, but undoubtedly the best way to take advantage of them is by developing a real-world web application that implements the MVC pattern in an approachable fashion.

You’ll certainly recall that in the previous tutorial, I finished creating the bare bones structure of this MySQL-driven blog application. In that article, I explained how to develop a simple front-end that allowed users to post their comments on different blog entries.

With this recent addition, the blogger is capable of displaying a bunch of blog entries previously stored on a MySQL table. Additionally, the application provides users with a basic web form in which to enter comments to each blog post. Users expect this behavior from any blog application.

Although in its current state, the blogger works well, its visual presentation looks pretty primitive. Therefore, in this fifth part of the series I’ll be adding some CSS styles to the view files that comprise this blog application to improve its look and feel.

Ready to learn how this will be done with Code Igniter? Then click on the link below and start reading!



 
 
>>> More PHP Articles          >>> More By Alejandro Gervasio
 

blog comments powered by Disqus
   

PHP ARTICLES

- PHP Closures as View Helpers: Lazy-Loading F...
- Using PHP Closures as View Helpers
- PHP File and Operating System Program Execut...
- PHP: Effects of Wrapping Code in Class Const...
- PHP: Building Concrete Validators
- Sanitizing Input with PHP
- Executing Shell Commands with PHP
- Handling File Data with PHP
- File Security and Resources with PHP
- ArrayObject PHP Class Examples
- ArrayObject PHP Class: An Introduction
- Getting File System Data with PHP
- PHP Tools for Working with the File and Oper...
- Working with the File and Operating System w...
- PHP Proxy Patterns: Completing a Blog


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 8 - Follow our Sitemap

Dev Shed Tutorial Topics: