Server Side, Making Your Life Easier: UPDATE

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.

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.