I am running FreeBSD 7.0 with apache and php. With my php scripts I have to <? php I cannot do this or else will not work <? What I am looking for is what do I have to edit in php.ini to all this?
; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. short_open_tag = On Code (markup): What php.ini doesn't mention is that short_open_tag can also cause problems if you have PHP processing XML documents. (*.xml)