Quote:
Originally Posted by coffeefix
adding <if condition="$show['loggedinusers']">
with it gave me a blank white page for some reason.
|
Did you make sure to have the ending </if> also? You would need to put that condition around the whole table, not within it or you would cause problems. ie:
HTML Code:
<if condition="$show['loggedinusers']">
<table .....>
other stuff
</table>
</if>