Currently I have this
// display all address with their associated phone numbers
foreach ($data->address as $address) {
if ($address->fullAddress) echo $address->fullAddress;
if ($address->phones->PhoneNumber) echo $address->phones->PhoneNumber);
}
but I need to add this as an alternative if the statements in the above clause are not met
// display all phone numbers if there is not an address
if ($data->relatedPhone) echo $data->relatedPhone;
If none of the clauses are met I want nothing to display at all. So how can I combine the two?
