12-28-2008, 11:17 PM
|
#5 (permalink)
|
|
The Prestige
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
|
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 ?>
|
|
|
|