what code would I use to give a drop down selection a specific value.
Example: Multiple-Selection Checkbox
Quote:
<if condition="$post['field70']&1">
WHATEVER YOU WANTED TO SHOW WOULD GO IN HERE.
</if>
<if condition="$post['field70']&2">
WHATEVER YOU WANTED TO SHOW WOULD GO IN HERE.
</if>
<if condition="$post['field70']&3">
WHATEVER YOU WANTED TO SHOW WOULD GO IN HERE.
</if>
|
If I have a multiple-selection checkbox, and had 3 options to choose from, if you clicked on those 3 options in Edit Profile, they would show on the profile. The "&1", "&2", "&3" is what's giving the value to my guess.. So I want to use this same method for Single-Selection drop down and that code doesn't work. Any help?