While testing the simple <? phpinfo() ?> page I am getting a "parse error line 1". This is with PHP and apache 1.3.2 or so.
<? phpinfo(); ?>
parse error = missing something like a (,),",; etc..
Your web server may have short tags disabled. Try
<?php echo phpinfo(); ?> instead
Use the full tag. <?php ?> You are just asking for trouble using the short tags <? ?>. ASP uses <? ?>. I don't know why so many people insist on destablizing their code.
ASP uses <% %> !!!