Posts Tagged ‘templating’

OO PHP templating

Tuesday, November 18th, 2008

Templating is a common technique for separation of concerns in applications - separating presentational logic from domain (or business) logic. This kind of separation promotes higher maintainability and a better chance to reuse presentational code (by encapsulating it in templates), the kind of traits we would all love to have in our code base.
(more...)