Perform simple calculations inside templates!
by
23 Aug 2008
I was quite excited to find this out! Have you ever wanted to make a simple calculation for a template, like an addition or subtraction? Personally, I needed this many times and most of them I created a plugin for that. Today I discovered that that is unecessary. You can use the conditional to make simple calculations. For instance, lets suppose you want to display somewhere the userid of the current user, incremented by one. You could do this: HTML Code:
<if condition="$nextid = $bbuserinfo['userid']+1"></if> The next userid is $nextid.
Let me know if it helped you! |