I am a beginner of Zend framework. I am just practicing with few tutorial projects. In some project I have found the below codes in layout.phtml but I don’t understand what is the purpose of these codes.
<?php echo $this->headMeta(); ?>
<?php echo $this->headTitle(); ?>
Please explain the above two lines.
Thanks
Enamul
I suggest you to start accepting some questions first before asking
The purpose of adding this is say you have two controllers FooController and BarController .You want to give title foo to the webpage while executing foo controller
In the same way you can give different title for another controller also
Same applies for Meta also