I have never used php but have been asked to set up a site for some code we have inherited. I have configured php to run on iis6 sucessfully however there is one issue.
This page will work properly…
<?php phpinfo(); ?>
But this will not…
<? phpinfo(); ?>
How do I get the latter to work?
You need to enable short tags in your
php.inifile. Its the section with--disable-short-tagsin it.