What are the implications of using short-open tags <? instead of <?php in PHP scripts?

Using short-open tags <? instead of <?php can lead to compatibility issues with servers that do not have short_open_tag enabled. To ensure maximum compatibility and prevent errors, it is recommended to always use <?php when writing PHP scripts.

&lt;?php
// Your PHP code here
?&gt;