This is why it's always best to write your code under the assumption that register_globals and short_tags are both turned off.
This will always work (assuming there's no logic bug or such):
<?php echo $_GET['var']; ?>
This may or may not work, depending on your configuration:
<?= $var ?>
Since you can never really predict when you might move code to a different server, or have the current server settings be changed, or decide to re-use code on a project on another server; you can save yourself a lot of grief by not using the short-cuts that may save you a minute of typing now for hours of debugging headaches later.