How can PHP code be properly enclosed within PHP tags to prevent it from being interpreted as Processing-Instructions?

To prevent PHP code from being interpreted as Processing Instructions, it should be enclosed within the `<?php` and `?>` tags. This ensures that the PHP interpreter recognizes the enclosed code as PHP script to be executed, rather than as XML Processing Instructions. ``` <?php // Your PHP code here ?> ```