// routes.php
Router::connect('/:productType/:category/:season',
array('controller' => 'products', 'action' => 'index', 'season'
=> null),
array('pass' => array('productType', 'category', 'season')));
// view:
echo $html->link('', array('controller' => 'products', 'action'
=> 'index','productType' => $productType, 'category' =>
$category));
// result:
<a href="/Anvelope Noi/Scutere/:season"/>
// desired result:
<a href="/Anvelope Noi/Scutere"/>
I need desired result, instead i get result ? Why is that ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---