What are the potential pitfalls of using "<?" instead of "<?php" in PHP code?

Using "<?" instead of "<?php" can lead to compatibility issues with certain server configurations where short tags are not enabled. To ensure maximum compatibility and avoid potential pitfalls, it's recommended to always use "<?php" for opening PHP tags.

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