Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic. This implies that PHP code is application logic, and is separated from the presentation.
The Smarty design was largely driven by these goals:
* clean separation of presentation from application code
* PHP backend, … Read more