Here is a snip from my code...
$wtitle = $row['wtitle'];
$author = $row['author'];
$display_block .= "
<B>Titile: </B>$wtitle<BR>
<B>Author: </B>$author<BR>
My question is How do I hide the html results for the AUTHOR if there is no data in the data base. Please show me the code ... I am new and desparate.
if field author contains any data... Output this HTML.
<B>Titile: </B>$wtitle<BR>
<B>Author: </B>$author<BR>
if field author is EMPTY... Output JUST this HTML.
<B>Titile: </B>$wtitle<BR>
thanks in advance for ANY help.
Fritz Jung