Possible Duplicate:
Are PHP short tags acceptable to use?
<?=$num2?>
$num2 is calling data in an associative array. Is <?=
shorthand for <?php echo
...? If so what are the limitations and advantages of using this method? I've also noticed you can only use =
if you're using the shorthand tags. Why is this?