View Single Post
  #2 (permalink)  
Old 06-16-2008, 09:45 AM
sticky sticky is offline
Junior Member
 
Join Date: Apr 2008
Posts: 3
Default

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
Reply With Quote