I haven't written any code - that's what I'm asking for.
Below are 2 table rows.
I want to show the second row if $adult2fn is not empty.
I can set $adult2fn as an hidden value elsewhere in the form.
Thus
Code:
<input type="hidden" name="adult2fn" value="$adult2fn" />
Code:
<tr>
<td width="189">$name $adult1sn</td>
<td colspan="2">I agree to the membership conditions of DCN Ltd</td>
<td width="56"><input id="tick1id" name="tick1" type="checkbox" checked="checked" /></td>
</tr>
<tr>
<td>$adult2fn $adult2sn</td>
<td colspan="2">I agree to the membership conditions of DCN Ltd</td>
<td><input id="tick2id" name="tick2" type="checkbox" checked="checked" ></td>
</tr>