我試圖用CSS來設計一些DIV。我想要做的是使用PHP在MySql循環內改變DIV標籤類。用PHP更改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)
我嘗試使用蘭特(1,2);但是這使得數字隨機不是爲了我想要的順序。任何幫助都感激不盡。提前致謝。
謝謝你的工作很棒:) – maxlk