10-16-2009, 09:08 PM
|
#3 (permalink)
|
|
how quixotic are you?
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
|
What Enfernikus means by PHP itself being a templating engine, he is referring to PHP code like this:
PHP Code:
<?php foreach($articles as $article): ?>
<h2><?php echo $article['title']; ?></h2> <p><?php echo $article['content']; ?></p>
<?php endforeach; ?>
<?php if($user->is_admin()): ?>
<p><a href="#">Post New Article</a></p>
<?php endif; ?>
It's faster and more powerful than any templating engine out there.
|
|
|
|