like you said
module/controller/action/variable/value
so the later are key value pairs basically
so
pages/edit/ei/1
pages/edit/page/1
echo $ei = $this->_getParam('ei');
equals 1
Aljosa Mohorovic wrote:
what to do if i want my url to look like "pages/edit/1" and then it translates to: controller => pages action/method => edit and finally some var inside controller/method that contains "1" or whatever is located after action/method? how can i accomplish this? Aljosa Mohorovic
