Still pretty new to ZEND myself but this is how I have it...
PHP Code:
<a href="/blog/admin/article/modify/id/<?php echo $this->escape($data->content_id);?>/">modify</a>
<a href="/blog/admin/article/del/id/<?php echo $this->escape($data->content_id);?>/">del</a>
PHP Code:
<?php
class Admin_ArticleController extends Blog_Controller_Action {
...
function modifyAction(){
$id = (int)$this->_request->getParam('id', 0);
}
}
?>
You need to add 'id/' to the end of your links.
Hope this helps
