User-defined Interfaces in PHP 5: Building a Page Generator

Monday, January 9th, 2006

In this final part of the series on user-defined interfaces in PHP 5 Alejandro puts all of the classes created in the previous articles together to work as a page generator. This allows complex page generation to be translated into a more flexible process through an object-based solution.... (Advertisement) Anatomy ...

User-defined Interfaces in PHP 5: Turning MySQL Classes into Interface Implementers

Monday, January 2nd, 2006

Welcome to the third part of the series User-defined interfaces in PHP5. In four parts this series explains the use of interfaces in PHP5 highlighting their advantages and illustrating their implementation in real applications.... (Advertisement) Web Hosting for $1.66/month Up to 6000 MB disk space, 100 GB ...

User-defined interfaces in PHP 5: Implementing (X)HTML Widgets

Monday, December 26th, 2005

In this second part of the series you will learn the basics of object-oriented web page generation through the use of X HTML widgets. You will also see how objects implement the HTMLRenderer interface to explicitly define its functionality by using the toHTML ...

User-defined Interfaces in PHP 5: Introduction to Core Concepts

Monday, December 19th, 2005

PHP5 takes users increasingly in the direction of object-oriented programming. The Standard PHP Library SPL is a new item that helps developers both with the creation of OOP applications and the maintenance of standardization. The SPL enables developers to work with user-defined interfaces. In this article the ...