What are common challenges faced by PHP rookies when trying to integrate a PHP script into a static PHP page?

One common challenge faced by PHP rookies when trying to integrate a PHP script into a static PHP page is not properly including the PHP script within the PHP tags. To solve this issue, ensure that the PHP script is enclosed within "<?php ?>" tags to indicate that it is PHP code.

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