I've got something similar in the app I build. You'd need to set up all
items off of /shop/ to go through a single action. Then, take that
action, and have it route to internal functions.
like:
function processAction($param1, $param2=null)
{
if($param2){
$this->_products($param1, $param2);
}else {
$this->_intro($param1);
};
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" 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
-~----------~----~----~----~------~----~------~--~---