php混编写法有错误
在网上学习一个小项目中有一段混编代码,如下
:
<table border="1" width="500px">
<tr bgcolor="silver"><td>投票项</td><td>描述</td><td>票数</td><td><a href="#">投票</a></td></tr>
<?php foreach ($this->items as $item) {?>
<tr><td><?=$item['name']?></td><td><?=$item['description']?></td><td><?=$item['vote_count']?></td><td><a href="#">投票</a></td></tr>
<?php }?>
</table>
运行之后 html页面无数据显示。
经过我的测试 ,$this->items 里面是存在数据的。
所以应该是php混编写法的问题,
谁懂的,帮我把错误指出一下。非常感谢
------解决方案--------------------<?= echo $item['name']?>
------解决方案--------------------<table border="1" width="500px">
<tr bgcolor="silver">
<td>投票项</td>
<td>描述</td>
<td>票数</td>
<td><a href="#">投票</a></td>
</tr>
<?php foreach ($this->items as $item) {?>
<tr>
<td><?php $item['name']?></td>
<td><?php $item['description']?></td>
<td><?php $item['vote_count']?></td>
<td><a href="#">投票</a></td>
</tr>
<?php }?>
</table>
试一下这个?如果不能用,你把这个打印出来的值我看看
------解决方案--------------------如果连<td><a href="#">投票</a></td>都不能出来的话,
那只能理解为$this->items不是一个数组。
print_r($this->items);看看
------解决方案--------------------检查一下你是否开启了
短标签,如果没有
那么就把<?=$item['name']?></td><td><?=$item['description']?></td><td><?=$item['vote_count']?>
改成<?php $item['name']?>~~~~~
------解决方案--------------------
<table border="1" width="500px">
<tr bgcolor="silver"><td>投票项</td><td>描述</td><td>票数</td><td><a href="#">投票</a></td></tr>
<?php foreach ($this->items as $item) {?>
<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>
<?php }?>
</table>