php混编写法有错误
在网上学习一个小项目中有一段混编代码,如下
:
<br /> <table border="1" width="500px"><br /> <tr bgcolor="silver"><td>投票项</td><td>描述</td><td>票数</td><td><a href="#">投票</a></td></tr><br /> <?php foreach ($this->items as $item) {?> <br /> <br /> <tr><td><?=$item['name']?></td><td><?=$item['description']?></td><td><?=$item['vote_count']?></td><td><a href="#">投票</a></td></tr><br /> <?php }?><br /> </table><br />
投票项 | 描述 | 票数 | 投票 |
投票 |
<br /> <table border="1" width="500px"><br /> <tr bgcolor="silver"><td>投票项</td><td>描述</td><td>票数</td><td><a href="#">投票</a></td></tr><br /> <?php foreach ($this->items as $item) {?> <br /> <br /> <tr><td><?php echo $item['name']?></td><td><?php echo $item['description']?></td><td><?php echo $item['vote_count']?></td><td><a href="#">投票</a></td></tr><br /> <?php }?><br /> </table><br /> <br /> <br />