[ic] Help with the [if value ...] tag

Hans-Joachim Leidinger jojo@buchonline.net
Mon, 13 Nov 2000 19:37:38 +0100


"Arango, Karen" wrote:
> 
> I am having a bit of difficulty with what I thought was a straight forward
> tag.
> 
> I would like to display different html based on the value of the
> addl_category field within my products table.  I am using the following code
> 
>             [if value [item-field addl_category] eq "accessories"]
>               <font face="verdana" size="2" color=white><B>Phone for the
> [item-description]</B></font>
>             [else]
>               <font face="verdana" size="2" color=white><B>Related Items for
> the [item-description]</B></font>
>             [/else]
>             [/if]
> 
> and I am always getting dumped into the else clause.  I did a display of the
> [item-field addl_category]  value in the line before, and it is
> "accessories".  Any ideas on where I have gone wrong?
> 
> Thanks for the help,
> 
> Karen
> 
[DEL]

TIP:
If any is going wrong, use the scratch variable like

[seti dummy][item-field addl_category][/seti]
TEST: [scratch dummy]<BR><BR>

and then, try

[if scratch dummy =~ /accessories/]
<font face="verdana" size="2" color=white><B>Phone for the
[item-description]</B></font>
[else]
<font face="verdana" size="2" color=white><B>Related Items for the
[item-description]</B></font>
[/else]
[/if]

Joachim

-- 
-------------Hans-Joachim Leidinger---------------------