页面重定向到自身

时间:2012-02-23 00:39:42

标签: php zend-framework redirect

<a href="<?php $this->url(array('controller' => 'page', 'action' => 'page-detail', 'page_id' => $show_today['id']));?>"><?php echo $show_today['id']; ?></a>

我在上面的陈述中语法错误。因为链接不会带我到任何地方,只有我在同一页面。

控制器,动作和值都是正确的。但链接没有进入相应的页面。

1 个答案:

答案 0 :(得分:2)

可能缺少回音?

//             here
<a href="<?php echo $this->url(array('controller' => 'page', 'action' => 'page-detail', 'page_id' => $show_today['id']));?>"><?php echo $show_today['id']; ?></a>