PHP Echo Shortcut
Quick PHP shortcut to save a few keystrokes:
We can write this:
<?=$variable; ?>
To replace this:
<?php echo($variable); ?>
Quick PHP shortcut to save a few keystrokes:
We can write this:
<?=$variable; ?>
To replace this:
<?php echo($variable); ?>