Thread: Template System
View Single Post
Old 12-28-2008, 11:32 PM   #6 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

Quote:
Originally Posted by sketchMedia View Post
why not just use PHP?
PHP Code:
<?php if($member->group == admin): ?>

adminCP link

<?php endif; ?>        

<?php foreach ($array as $value => $key ) :

key: <?php echo $key?> value: <?php echo $value?>

<?php endforeach; ?>
Cuts out the need to waste resources parsing another language.
Edit:

PHP Code:
<?php if($member->group == admin): ?>

adminCP link

<?php endif; ?>        

<?php foreach ($array as $value => $key ) : ?>

key: <?php echo $key?> value: <?php echo $value?>

<?php endforeach; ?>
__________________
Tanax is offline  
Reply With Quote