Hi guys,
How can I get id value in this URL example
https://localhost/phalcon-crud/index/update/id/3
the id value is 3 and i'm using a router
$router->add("/delete/id/:params", array( 'controller' => 'index', 'action' => 'delete', 'id' => 1, 'params' => 1 ));
to generate that URL, and also how can i access that value in a update controller
Many thanks,