Nasıl diğer sayfaya başvuruda zend_navigation için params geçtikleri

0 Cevap php
$pages = array(
       array(
          'label'    => 'Search',
          'title'    => 'Please Search',
          'uri'      => 'Search.php',
          'params'   => array('stcode'=>$stcode)
        ));

Şimdi sayfaları dizi zend_naviagtion geçilecek

 $container = new Zend_Navigation($pages);
 $view->getHelper('navigation')->setContainer($container);

I have a couple of items in the pages array which will help me displaying the menu when the menu is generated when i click on that search page and it is taking me to the index.php as the code is written if stcode is not present then it will redirect to index.php .Now my problem is how do i pass the stcode to that page

0 Cevap