
05-02-2005, 02:35 PM
|
|
|
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Logician
You can use a "NOT" "(!)" conditional to simulate <else />.
Eg.
[[($bbuserinfo[userid]>0)]]
if visitor is a member
[[/($bbuserinfo[userid]>0)]]
[[(!($bbuserinfo[userid]>0))]]
if visitor is NOT a member
[[/(!($bbuserinfo[userid]>0))]]
Please note the location of ! and double paranthesis in the second clause
/(!( condition ))
|
Gotcha! Thank you.
|