In coding i always write
<?= $this->description?>
rather than <?php echo $this->description ?>
it is little bit faster and easier. However, after i started using zend framework, i couldn't use that feature. so do you have any idea about it.
In coding i always write
<?= $this->description?>
rather than <?php echo $this->description ?>
it is little bit faster and easier. However, after i started using zend framework, i couldn't use that feature. so do you have any idea about it.
You need to enable the short_open_tag
option in the configuration file php.ini. Short tags are disabled by default.