in Kohana/CodeIgniter, I can have url in this form -> http://www.name.tld/controller_name/method_name/parameter_1/parameter_2/parameter_3 ...
and read the parameters in my controller as follows
class controller_name_controller
{
public function method_name($param_A, $param_B, $param_C ...)
{
// ... code
}
}
is there a workaround for this or there is an alternative way in Zend Framework?