How does the use of short_open_tags affect the compatibility of PHP code?

The use of short_open_tags in PHP can affect code compatibility because it may not be supported on all servers or configurations. To ensure maximum compatibility, it is recommended to avoid using short_open_tags and instead use the full <?php opening tag.

&lt;?php
// Code without short_open_tags
echo &quot;Hello, World!&quot;;
?&gt;