Hi There,
Wondering if anyone can give me a hand here. I'm building the email content and I need to test to see if a field is empty. So something like this:
But this doesn't work. Any hints on what might work is very much appreciated.
Wondering if anyone can give me a hand here. I'm building the email content and I need to test to see if a field is empty. So something like this:
Code:
<?php if (!empty($ANSWER_1)) { ?>
<td>{$ANSWER_1}</td>
<?php } else { ?>
<td> </td>
<?php } ?>
But this doesn't work. Any hints on what might work is very much appreciated.