If you don't have any routes defined in your bootstrap file then these extra 
parameters will be available automatically

http://site/controller/action/key1/val1/key2/val2........

If you would like to have a custom route and match that route even if extra 
parameters are passed through, use a route such as 

"profile/:id/*"

This will match

profile/10

and also

profile/10/extra/params

The online manual has a good section talking about migration
http://framework.zend.com/manual/en/zend.controller.migration.html

Jude A.

On Wednesday 28 February 2007 20:45, Gerry "CrsH" Put wrote:
> Probably a stupid question but on our site we have some routes that say
>
>  http://site/article/view/id/1
>
>  in 0.1.5 I created a route in the bootstrap file for every extra parameter
> I wanted to your and got them wuth the _getParam() function of the action
> but we recently upgraded to 0.8.0 and this isn't working anymore.
>
>  Do we still need to put every route we need (for different $_GET
> variables) in the bootstrapfile or is there an easier way to get these
> extra variables?
>
>
>  Tnx
>  Gerry

Reply via email to