使用以下代码:
<table border="1" >
<?
$item_count=0;
$select_SQL="select * from iplay_test";
$result=mysql_query($select_SQL,$con);
while($eachRow= mysql_fetch_array($result))
{
if($item_count%3==0)
{
echo "<tr><td> 0 </td></tr>";
}
else
{
echo "<td> 1</td>";
}
$item_count++;
}
?>
</table>
我得到输出,
0
1 1
0
1 1
0
1 1
0
1 1
0
1 1
但我应该得到类似的东西
0 1 1
0 1 1
0 1 1
我在这里想念什么?
我基本上这样做是为了让每行显示 3 个项目。要显示的数据将来自数据库。这个问题有更好的解决方案吗?