Pieman86 wrote:You should just be able to echo $story. If there's no text in it then nothing will be shown.
I'm sorry, I know that. But I have a label like:
<tr>
<td>NAME:</td>
<td><? echo $name; ?></td>
</tr>
<tr>
<td>WWW:</td>
<td><? echo $www; ?></td>
</tr>
<tr>
<td>EMAIL:</td>
<td><? echo $email; ?></td>
</tr>
What I am trying to do is if there is no $www, not even to display that table row.
My sql query is:
$the_person_rs = $conn->Execute ( "SELECT * FROM aif_memberinfo, phpbb_users WHERE user_id=member_userid AND member_userid=" . $_GET['member_userid'] . "" ) or die ( $conn->ErrorMsg() );