Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add optional named parameters to my routes, and I read on Stack overflow you can do it like this:

Router::connect('/add_product/:productid/*',
                array('controller' => 'baskets', 'action' => 'add_product'),
                array('pass' => array('productid', 'amount')));

Which I tried by calling this url:

/add_product/testid/amount:5

Which does not work.

Is there something I'm missing?

share|improve this question
5  
I think so. You need to omit "amount" here in "pass" for the url to work as expected. Or the url would have to be "/add_product/testid/5" as you make the named param a passed one. – mark Feb 14 at 13:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.