Business Details
“; print $row[‘category’]; print “ in “; print $row[‘city’]; print “
“;
print “Organisation: “; print $row[‘organisation’]; print “
Contact: “; print $row[‘title’]; print ” ” ; print $row[‘fname’]; print ” ” ; print $row[‘lname’];
if ($row[‘tel’] != “”)
{
print ““; print ” Telephone No. “; print $row[‘tel’];
};
if ($row[‘mobile’] != “”)
{
print ““; print ” Mobile: “; print $row[‘mobile’];
};
if ($row[‘fax’] != “”)
{
print “
“; print ” Fax: “; print $row[‘fax’];
};
print “
“; print “Description: “; print $row[‘description’]; print “
“;
if ($row[’email’] != “”)
{
print “ Email: “; print $row[’email’]; print “
“;
};
if ($row[‘website’] != “”)
{
print “ Website: “; print $row[‘website’]; print “
“;
};
?>


