Quote:
Originally Posted by daystorm
When I input this, if I check mark some random ones show up or none at all show up. I can not understand what I am doing wrong.
|
Some of your ticked fields are showing up... some aren't... because your code is wrong - something very small but small enough to break everything (it's in the attention to detail).
Code:
<if condition="$comma =''"></if>
<if condition="$post['field36']&1">$comma Arts and crafts
<if condition="$comma ='-'"></if>
</if>
<if condition="$post['field36']&2">$comma Board games
<if condition="$comma ='-'"></if>
</if>
<if condition="$post['field36']&4">$comma Cars
<if condition="$comma ='-'"></if>
</if>
<if condition="$post['field36']&8">$comma Cinema / Movies
<if condition="$comma ='-'"></if>
</if>
Looking at the code above you will see the value after the & doubles every time (it doesn't increment by 1 as per your code). Example: &1 &2 &4 &8 &16 &32...