vote up 0 vote down star
1

I have PHP, IIS7, ReWrite Module for IIS and Zend all installed.

I can execute PHP pages just fine, even got PHPINFO showing up.

I setup a Zend quickstart app on IIS and when I open it this is what I see:

You can see from the source that it's not executing the <= portions.

Any idea what needs to change?

alt text

flag

3 Answers

vote up 5 vote down check

You need to enable shortags in your php.ini:

short_opentag = on

However, even though Zend's examples use the open tag, for portability you really should use the full echo statement as not all webhosts allow for short_opentag. The short tag might save a bit of time typing but may actually be worse in the long run.

link|flag
vote up 0 vote down

Thank you very much guys.

Unfortunately i don't have enough rep to vote up dragonmantank but I appreciate the extra info.

Updated :)

link|flag
vote up 1 vote down

make sure <? is enabled and not just <?php

if you use <?

php.ini --->short_opentag=On

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.