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); を使ってみました。しかし、これは私が望む順序ではなくランダムに数字を作ります。どんな助けでも大歓迎です。前もって感謝します。