tags not working in php 5.3.1

It’s not recommend you use short tags (<? ?>). You should use the full length tags (<?php ?>). If you want to make your application portable, it’s possible that short open tags are not allowed on another server and hence your application will break. On the other hand, the echo shorthand <?= $var ?> is … Read more