Log in

View Full Version : tryin to check for a forum id


bo0oost
11-12-2006, 04:14 AM
I tried a ton of variations for the below code... none of them work... they always display the "do some stuff". Any ideas?


<if condition="$forumid=40">
do some stuff
</if>


Thanks!

bump :)

CyberRanger
11-13-2006, 11:32 AM
I tried a ton of variations for the below code... none of them work... they always display the "do some stuff". Any ideas?


<if condition="$forumid=40">
do some stuff
</if>


Thanks!

bump :)


<if condition="$forumid==40">
do some stuff
</if>
:)

Viper007Bond
11-13-2006, 11:48 AM
= means set, == means is equal to, === means is exactly equal to (case sentitive). ;)

bo0oost
11-13-2006, 06:09 PM
Thanks!