Possible Duplicate:
How to enable PHP short tags?
Quick question how to enable:
<?="something"?>
It should just echo: something
How to turn it on in web server configuration? How is it called that <?= ?>
?
Possible Duplicate:
How to enable PHP short tags?
Quick question how to enable:
<?="something"?>
It should just echo: something
How to turn it on in web server configuration? How is it called that <?= ?>
?
open php.ini file and then set following
short_open_tag=On
And restart your Apache server.