You will see that line 357 of give_receipt.php is displayed as:
<? }
It is highly likely that you have short tags disable in your PHP.ini.
That said, the RFC for PHP states that it proposed that this short tag format for PHP is deprecated in a future release.
The developers really should therefore have this coded as
<?php }
Hope this helps.