我现在有这段代码来回显我的所有数据库条目,我想知道如果 db 条目的第一个值为 a,那么在 ZF 中回显条目是什么样子的。
代码:
<table>
<?php foreach($this->clubs as $clubs) : ?>
<tr>
<td><a href="<?php echo $this->url(array('controller' => 'club-description', 'action' => 'index', 'club_id' => $clubs->id));?>">
<?php echo $this->escape($clubs->club_name);?></a></td>
<td><?php echo $this->escape($clubs->rating);?></td>
</tr>
<?php endforeach; ?>
</table>
谢谢
里克