From e2f077f8d9633ff531d4ce1785a21f56cb028477 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 6 Nov 2014 20:47:42 +0100 Subject: [PATCH] added link to alternative opinion --- 9-templating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-templating.md b/9-templating.md index 6cb00ea..2917f06 100644 --- a/9-templating.md +++ b/9-templating.md @@ -4,7 +4,7 @@ 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). +A good quick read on this is [ircmaxell on templating](http://blog.ircmaxell.com/2012/12/on-templating.html). Please also read [this](http://chadminick.com/articles/simple-php-template-engine.html) for a different opinion on the topic. Personally I don't have a strong opinion on the topic, so decide yourself which approach works better for you. For this tutorial we will use a PHP implementation of [Mustache](https://github.com/bobthecow/mustache.php).