I am trying to display profile from MySql database using PHP, here is the simple code:
<b>Professional Society Membership:</b> <br>
<?php echo htmlentities($result->society_member);?>
Now I do not want to display Professional Society Membership if the MySql field "society_member" is empty / blank.
Thank you in advance.