View Single Post
Old 10-16-2009, 09:08 PM   #3 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

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.
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote