我目前正在创建一个带有博客平台的网站,我希望主页上的所有其他帖子容器都可以交替颜色。像浅蓝色,然后是深蓝色、浅蓝色、深蓝色、浅蓝色等。我正在使用 while 循环从 mysql 数据库中获取 5 个帖子。这是我的代码。
<?php
$sql = mysql_query("SELECT * FROM posts ORDER BY id DESC LIMIT 6");
$array = mysql_fetch_array($sql);
while ($array = mysql_fetch_array($sql)) {
//The php below this is the problem
$counter = 0;
$counter++;
$postcolour = WHAT DO I PUT HERE ? 'lightblue' : 'darkblue';
?>
<div class="postcontainer" style="background-color: <?php echo $postcolour; ?>;">
</div> <?php } ?>