Re: [PHP] Best PHP Template System

2012-05-04 Thread Gerardo Benitez
I have used smarty in project with pure php and the template system of Zend Framework in proyects done in Zend Framework, both are fine for me. Gerardo. On Thu, Apr 26, 2012 at 5:48 AM, Simon Schick wrote: > On Thu, Apr 26, 2012 at 12:07 AM, Yared Hufkens wrote: > > > > Why use an external en

Re: [PHP] Best PHP Template System

2012-04-26 Thread Simon Schick
On Thu, Apr 26, 2012 at 12:07 AM, Yared Hufkens wrote: > > Why use an external engine which slows your scripts down to do something > which can easily be done by PHP itself? PHP is imho the best template engine > for PHP. > With PHP 5.4, it became even easier because somestuff()?> can be > used wi

Re: [PHP] Best PHP Template System

2012-04-25 Thread Willie
Point taken. I will try to learn without the Template Engine! Thanks a lot Yared! On Wed, Apr 25, 2012 at 3:07 PM, Yared Hufkens wrote: > Why use an external engine which slows your scripts down to do something > which can easily be done by PHP itself? PHP is imho the best template > engine for

Re: [PHP] Best PHP Template System

2012-04-25 Thread Yared Hufkens
Why use an external engine which slows your scripts down to do something which can easily be done by PHP itself? PHP is imho the best template engine for PHP. With PHP 5.4, it became even easier because somestuff()?> can be used without short_open_tag enabled. However, you always schould divide U