Jump to content

Using <? instead of <?php


Recommended Posts

In your php.ini you need to put:

short_open_tag = On

And, if you're working with XML, dont forget that <?xml version="1.0"?> is going to get interpreted, so avoid confusion by using:

<?= '<?xml version="1.0"?>' ?>

Cheers,

Jae
Link to comment
Share on other sites

The best fix for this is to edit your files to use the <?php form. PHP.net has the following recommendation -
[quote]; 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.[/quote]
Short open tags, like register_globals, was one of the lazy-way/short-cuts that caused more problems then it was worth.

If you still want or need to do this, either do what rolf suggested in the php.ini file or you can also do this with the following line in a .htaccess file -
[code]php_value short_open_tag on[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.