PDA

View Full Version : Help with template conditionals please!


FleaBag
03-13-2006, 07:21 PM
I believe you can use AND in template conditionals, but I do not quite know how lol.

I need a template conditional which will allow me to do the following in my memberinfo table.

IF field 1 has no data AND field 2 has no data do not print A ELSE print B.

A and B being two different bits of HTML.

I'm finding this hard to explain, but if you could help out, it would be much appreciated.

Ta! :)

Nevermind, sorry... I worked it out! The power of OR. :)

Princeton
03-15-2006, 12:55 PM
try
<if condition="$field1 AND $field2">
print B
<else />
print A
</if>