Without a Template Engine
Without a Template Engine, your PHP program looks like this: |
![]() |
HTML and PHP are embedded with each other in the same page.
|
With a Template Engine
With a Template Engine, your program looks like this: |
![]() |
There is one program with pure PHP and one template with pure HTML. The Template Engine (TinyButStrong) enables you to merge the HTML page with data from your program. The engine is simple and powerful. It offers lots of tools and automatisms to make your program light and crystal clear. At the HTML side, it is also much more simple. You design a standard HTML page in which you put locators for the merge. You will be able to view your template as a normal Web page. If you don't know HTML, your template can be designed without problem using a visual editor such as Dreamweaver or FrontPage. |
More benefits
| But there are many more benefits: | ![]() |
The Template Engine also enables you to easily manage:
And a Template Engine is very much appreciated by professionals because the PHP development can be given to one person and HTML development to another. Page design can be changed without programming changes like with any RAD tools (Rapid Application Development) such as Delphi, Visual Basic,... |


