In the previous articles, I used a PHP shortcut to display variables. Just like this:
<?=$variable?>
That method, although very friendly and quick, is deprecated, so you should get used to doing this instead:
<?php echo $variable; ?>
I’ll keep you posted if I com up with anything else.