What are the potential issues with using short PHP tags in code?

Using short PHP tags (`<? ?>`) can lead to compatibility issues with XML declarations, can be disabled in some server configurations, and may not be recognized by all code editors. To ensure maximum compatibility and readability, it is recommended to use the full PHP tags (`<?php ?>`) instead.

&lt;?php
// Code goes here
?&gt;