Trying to display field heading only when field is not emply
- by Anees
hi, here is my code.
<?php if(!empty($rows_Recordset1['domicile']))
{
echo "Domicile";
}
else {
echo "";
} ?>
domicile is field in record set.
the problem is that Domicile heading is not showing where I want it to print. Its showing nothing.