I have a web application on a Linux server which starts with <?

I needed to copy this application to a windows environment and everything is working fine except that an SQL statement is being rendered differently. I don't know if this has to do with the script beginning with <?php instead of <? because I don't know from where to enable the <? from the PHP.ini so I changed it to <?php

I know that these 2 statements are supposed to mean the same but I need to test it with <? in order to ensure that the application is exactly the same. This way I can eliminate another possibility.

Thanks

link|improve this question

feedback

5 Answers

up vote 28 down vote accepted

Set

short_open_tag=On

in php.ini

And restart your Apache server.

link|improve this answer
11  
If PHP runs as Apache module, you can also set it in a .htaccess file: php_flag short_open_tag on – Álvaro G. Vicario Feb 2 '10 at 17:45
feedback

you need to turn on short_open_tags.

short_open_tag = On
link|improve this answer
feedback

enable shorttags in the php.ini:

short_open_tag = on
link|improve this answer
feedback

if you edit your php.ini file, remember to restart your service (apache2, etc) for the edits to php.ini to take effect

link|improve this answer
feedback
   set the asp_tags = On and short_open_tag = On in both the files \apache\Apache2.2.21\bin\php.ini and \bin\php \php5.3.8\php.ini  and then restart the apache server
link|improve this answer
asp_tags? what for? – Your Common Sense Mar 14 at 7:27
feedback

Your Answer

 
or
required, but never shown

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