gpt4 book ai didi

php - 向 2 行的每个第二个结果添加样式,然后跳过 2 个结果?

转载 作者:行者123 更新时间:2023-11-30 00:46:49 25 4
gpt4 key购买 nike

这句话说起来有点棘手;

我想做的是添加样式“background-color: black;”仅查询我的查询中的一些结果。

所以,如果我要回显我的结果,它会像这样显示;

1st result no style
2nd result black
3rd result black
4th result no style
5th result no style
7th result black
8th result black
9th result no style
10th result no style

我的查询

$getusers= $db->query("SELECT * FROM users");
while($users= $getusers->fetch_assoc()) {

$color = ??????????????? not sure

echo '<div style="background-color: ' . $color . ';">';
echo $users['username'];
echo '</div>';
}

最佳答案

使用占位符变量。

遵循下面示例中 $i 的进展。

$getusers= $db->query("SELECT * FROM users");

// Starting at 2 will cause "no style" to happen only once on first pass.
$i = 2;

while($users= $getusers->fetch_assoc()) {

// if $i is 3 or 4 value would be "black"
$rowBg = "background-color:black";

// Set to an empty string (no style) if $i is 1 or 2.
if($i <= 2) {
$rowBg = "";
}

$i++;

// Start over!
if($i > 4)
$i = 1;

echo '<div style="' . $rowBg . ';">';
echo $users['username'];
echo '</div>';
}

关于php - 向 2 行的每个第二个结果添加样式,然后跳过 2 个结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21297827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com