Thread: Template System
View Single Post
Old 12-28-2008, 11:17 PM   #5 (permalink)
sketchMedia
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

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.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)

Last edited by sketchMedia : 12-29-2008 at 01:49 AM. Reason: Missed off ?>
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
ChrisR (12-29-2008)