we can redirect urls in magento with parameters by using magento's default
_redirect() function
you have to create an array for parameters you want to use in url
see the following example:
$param = array(
'_query'=>;array( // add ? mark to urls
'Store' =>'store1' , //parameter as store
'category_id'=>'121' //parameter as category id
)
);
$this->_redirect('manager/account/orders',$param);
0 Comment(s)