On Mon, Sep 3, 2012 at 9:14 PM, David McGlone <david@xxxxxxxxxxxxx> wrote: > Does anyone use any templeting system for any projects? If so what would > anyone recommend? I looked at Code Ignitor, but it seems the templeting system > is optional and left out by default. > > -- > Regards > David M. Well, for a different take on templating, my web framework is basically just a combination of input validation and output mechanisms (templating.) The library takes a functional programming approach in terms of architecture. Here's an example of the markup: http://nephtaliproject.com/documentation/markup/ Page output regions are broken up into pipes, and if one pipe errors out, it does not impact the other output regions. It does other things, too (config settings, debugging output, avoid prompts on back clicks after posting data, convenient PDO wrappers, etc.), but at its core, it's really a templating framework with input validation capabilities. Adam -- Nephtali: A simple, flexible, fast, and security-focused PHP framework http://nephtaliproject.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php