the views:
PHP Code:
<?php foreach($this->data as $data) : ?>
<tr>
<td><?php echo $this->escape($data->title);?></td>
<td><?php echo $this->escape($data->content);?></td>
<td><?php echo $this->escape($data->post_time);?></td>
<td><?php echo $this->escape($data->publish);?></td>
<td>
<a href="/blog/admin/article/modify/<?php echo $this->escape($data->content_id);?>/">modify</a>
<a href="/blog/admin/article/del/<?php echo $this->escape($data->content_id);?>/">del</a>
</td>
</tr>
<?php endforeach; ?>
how can i get the value in modifyAction()
PHP Code:
<?php
class Admin_ArticleController extends Blog_Controller_Action {
...
function modifyAction(){
//get the value
}
}
?>
thanks
--dudu