Hi,
I am looking at Zend_View and wondering whether there is a
recommended way or displaying page header/footer across all all pages
automatically? I do that all the time in smarty and think it's the
right way to do it...
I guess something like
<html>
<head>
<meta http-equiv="Content-Language" content="en" />
<meta name="GENERATOR" content="PHPEclipse 1.0" />
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title><?php echo $this->title ?></title>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#FF9966" vlink="#FF9966"
alink="#FFCC99">
<?php /* somehow body goes here */ ?>
</body>
</html>
any ideas?
tomek