@filburt1 - Here's what I came up with. The code in the php is only 3 small lines and this is what I need to do in the template to get the same thing. Which is better?
Quote:
[[($subject=="")]]
<td bgcolor="#13486D"><normalfont><input type="text" class="bginput" name="title" value="Just a note to say hello" size="40" maxlength="85" tabindex="2"></normalfont></td>
[[/($subject=="")]]
[[($subject!="")]]
<td bgcolor="#13486D"><normalfont><input type="text" class="bginput" name="title" value="$subject" size="40" maxlength="85" tabindex="2"></normalfont></td>
[[/($subject!="")]]
|