added to intro

This commit is contained in:
Patrick 2014-10-08 19:08:26 +02:00 committed by lubiana
parent b7214b2fbc
commit 3d29f2f51a

View file

@ -4,6 +4,12 @@
A template engine is not necessary with PHP because the language itself can take care of that. But it can make things like escaping values easier. They also make it easier to draw a clear line between your application logic and the template files which should only put your variables into the HTML code.
A good quick read on this is [ircmaxell on templating](http://blog.ircmaxell.com/2012/12/on-templating.html).
For this tutorial we will use a PHP implementation of [Mustache](https://github.com/bobthecow/mustache.php).
Other well known alternatives would be [Twig](http://twig.sensiolabs.org/) or [Smarty](http://www.smarty.net/), but they are both pretty bloated and offer too much functionality for just a template engine.
to be continued...
[<< previous](8-dependency-injector.md)