Reputation: 1055
I 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?
Upvotes: 3
Views: 165
Reputation: 784938
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.
Upvotes: 1