How to properly use layout when using script includes in the head-Zend Framework
- by Joel
What do you do if you need to have a script file in the head section that is only used on one page, but all the pages can use the same head otherwise?
Right now, I'm doing:
<?php include header info?>
<script></script?
<?php include rest of header info>
<body>
...
I'm trying to figure out how best to do this with the layout.phtml
Any tips?
Thanks!