我正在尝试使用 CSS 设置一些 DIV 的样式。我想要做的是使用 PHP 更改 MySql 循环中的 DIV 标记类。
<?php
$result = $mysqli->query("SELECT * FROM posts ORDER BY id DESC LIMIT 0, 20");
while($row = mysqli_fetch_array($result))
{
?>
<div class=” box id1”><?php echo $row[‘post’];?></div>
<?php } ?>
所以我想按这个顺序改变类框id1
box id1
box id1
box id2
box id2
box id2
box id2
box id1
box id1
box id2
box id2
box id2
box id2
So on. (2 div tags with the class box id1 then 4 with box id2 looping)
我尝试使用 rand(1, 2); 但这使数字随机出现,而不是我想要的顺序。任何帮助都感激不尽。提前致谢。