Jump to content

My server only recognizes the <?php tag. How do I get it to recognize <? tag?


LucienFB

Recommended Posts

Short open tags create a problem with xml inside a .php file as well, because the php parser was never made smart enough to figure out that <?xml is not a short open tag and you have to echo an xml opening tag instead of having it inline in a .php file.

 

PHP.NET itself also recommends not using short open tags because you will end up with code that won't work on some servers and you won't always be in a position to be able to turn short open tags on -

 

; 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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.