I'm running into a problem where the first block of PHP code is properly executed but any subsequent blocks are not. For example, let's say I have the following code:
<? echo "do something"; ?>
<p>test</p>
<? echo "do something else"; ?>
The displayed result would be:
do something
<p>test</p>
<? echo "do something else"; ?>
If I never break between PHP code, it would execute everything. Is this a server setting or something I can correct? Any insight on this would be very much appreciated!