Possible Duplicate:
What is the difference between the PHP open tags “<?=” and “<?php”/“<?”?
Does it make any difference when using
<?php
something;
something2;
?>
and
<?
something;
something2;
?>
Everywhere I see <?php ... ?> is used. Does it have any advantages?
Do not use
<? ... ?>and you will never have an issue.Google
php shorthand.