$pages = array(
array(
'label' => 'Search',
'title' => 'Please Search',
'uri' => 'Search.php',
'params' => array('stcode'=>$stcode)
));
now the pages array will be passed to the zend_naviagtion
$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