views:

132

answers:

2

I want to give more than one links using by Zend_Navigation

for example

 echo $this->navigation()->topmenu();
 echo $this->navigation()->menu(); 
 echo $this->navigation()->footermenu();

like this, but I can't give more than one links.

When I use like following code just works this one

echo $this->navigation()->menu();

I use like following codes.

     $container = new Zend_Config_Xml(APPLICATION_PATH .'/configs/navigation.xml' 'nav_top');   

     $navigation = new Zend_Navigation($container);
         $view->navigation($navigation);
A: 

this is so hard bro ...

A: 

See my answer to this question.

berty