What are the potential pitfalls of using short open tags in PHP?

Using short open tags in PHP can lead to compatibility issues with servers that do not have short open tags enabled. To ensure maximum compatibility, it is recommended to use the full `<?php` tag instead.

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