Example: http://domain.local/user/edit/id/23 controller = user action = edit id = 23
From controller I can easily get a value of the request variable "id" by writing $id = $this->_getParam('id');
But I want to get it from the view script (user/edit.phtml) directly. How is this possible?