On Sat, 25 Nov 2006 17:30:13 +0000 (UTC), "kllw"
<webforumsuser@macromedia.com> wrote:
>Thanks, Dave. I'm actually using PHP/MySQL. How can I use
the Show if Recordset
>not empty when the field is a part of a larger recordset?
It's pulling all
>dates for a schedule, some of which are a special event.
I always want the text
>of the special event to show, but make that text a link
only if there is a link
>in the link field.
You could have:
<td>
<?php
if ( is_null($row_rsMyRecordset['ev_link']) ) {
echo $row_rsMyRecordset['ev_text'];
} else {
echo "<a
href=".$row_rsMy['ev_link'].">".$row_rsMy['ev_text']."</a>";
}
?>
</td>
--
Steve
steve at flyingtigerwebdesign dot com