Strange.. with my installation of the Zend Framework
<?php echo $this->user; ?> works fine but
<?= $this->user; ?> does not work
Anyone have an idea what is the problem ?
Strange.. with my installation of the Zend Framework
<?php echo $this->user; ?> works fine but
<?= $this->user; ?> does not work
Anyone have an idea what is the problem ?
Check your php.ini, you probably have short tags disabled. See the manual page
Looks like your server configuration has short_open_tag turned off. This is generally a good thing, short_open_tag saves you some characters but can cause problems while parsing some types of documents.
I'd leave it off unless you know for sure that you will need it.