I can't use php in templates, at least not the way it is meant to be used so i really need it to be coded into the script.
Something like this:
[if-admin] = <? if($member_group == 'admin') { ?>
[/if-admin] = <? } ?>
Using this in the template allows me to make two different comment styles for normal users and admins. Yet, you would also need the PHP else function in order to stop having a admin reaction twice, once with the "admin" template and once with the "normal" template. So i also need something like this:
[else] = <? else { ?>
[/else] = <? } ?>
Hope i'm not to blurry, kinda hard to explain

