I know the syntax for <? ?>
is not always allowed, and will spark notices if you have them enabled... but I haven't seen many people use <?=$var?>
to echo a variable... is this illegal syntax or completely accepted in all versions of PHP?
<?php echo $var; ?>
vs
<?=$var?>