I just installed php 5.3.1 in my linux server and now my old work which i used to write with tags is not working at all..
Please help me out.. How can i resolve this??
|
feedback
|
|
Short tags are disabled by default. I do not recommend you to use short tags ( Just to wrap up some reasons why you should not use it:
Update: An interesting discussion about this can be read here: http://www.mail-archive.com/internals@lists.php.net/msg41839.html And for the default behaviour:
And the reason of discouraging short open tags:
Note also this declined RFC about short open tags for templates: http://wiki.php.net/rfc/shortags | |||||||||||||||||||||
feedback
|
|
Looks like you got short_open_tags set to "Off" in your php.ini file. Try setting it to "On" and restart apache. | |||
|
feedback
|
|
maybe your new configuration doesnt alllow short tags. Just use If you still want to use them you can The main reason for this is so you can use inline Xml tags. | |||||||||||
feedback
|
|
You most likely need to turn on short tags in your PHP configuration file. Without knowing your configuration, I couldn't say where you'd find it, but you're looking for php.ini (most likely somewhere like In there, the setting you are after is | |||||||||
feedback
|