<?php echo $variable ?>is the same as
<?= $variable ?><?php if ($value) { ?>
<? } ?>is the same as
<?php if ($value): ?>
<?php endif; ?><?php foreach($things as $thing) { ?>
<?php } ?>same as
<?php foreach($things as $thing): ?>
<?php endforeach ?>