Hey guys, just upgraded my WAMP.

A lot of my code used to use <?=$variable?> for a quick echo statement. Does anyone know the php setting to turn this back on?

link|improve this question

80% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Just set

short_open_tag=On

in php.ini

link|improve this answer
1  
success thanks for quick response – Greg May 17 '11 at 0:35
feedback

In PHP.ini, set short_open_tag = 1

link|improve this answer
feedback

Set your short_open_tag to 1 inside your php.ini

link|improve this answer
feedback

In php.ini this variable is called short_open_tag

Check this php manual: http://php.net/manual/en/ini.core.php for turning this ON.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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