puiu91
5/17/2016 - 6:16 PM

PHP ways to embed in HTML

PHP ways to embed in HTML

<!-- html component is inline php -->
<td class="text-center"><?= $card->activated === 'active' ? '<i class="fa fa-check u-green"></i>' : '<i class="fa fa-times u-red"></i>' ?></td>


<!-- php is inline html component -->
<td class="text-center">
    <i class="fa <?= $card->activated ? 'fa-check u-green' : 'fa-times u-red' ?>"></i>
</td>


<!-- html component is seperate from php -->
<td>
    <?php if ($card->activated === 'active'): ?>
        <i class="fa fa-check u-green"></i>
    <?php else: ?>
        <i class="fa fa-times u-red"></i>
    <?php endif; ?>
</td>