gracias gator lo voy a probar
ahora hice esto
Código PHP:
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$this->view->bienvenido = 'Zend Framework MVC!';
$this->verOtro();
$this->verMenu()
}
public function verOtro()
{
$this->view->otroTxt="otroooooooooo!!!";
$this->render("otro");
}
public function verMenu()
{
........................................................................
}
}
es lo mejor?? supongamos que en el index de mi web quiero cargar 2 o 3 secciones, y quiero armar un menu lateral, hacerlo asi es correcto??