In your php.ini, you need to set the following directive:
short_open_tag = On
From the manual:
Tells whether the short form (
<? ?>
) of PHP's open tag should be allowed...
If you have time on your hands, you may want to consider replacing all those short tags '<?
' with the full-form ones <?php
, for better portability (see what just happened to you? :)
karim79
2009-08-14 02:22:10