show_phone.php 330 Bytes
<?php foreach($phones as $phone ):?>
    <?php if(!empty($phone['phone'])): ?>
        <div class="style">
            <div class="profile-phone">
                <img src="/images/ico-phone.png" alt=""/>
                <span><?= $phone['phone'] ?></span>
            </div>
        </div>
    <?php endif; ?>
<?php endforeach;?>