gpt4 book ai didi

php - 将不同的 CSS 应用于查询的前 10 个结果

转载 作者:太空宇宙 更新时间:2023-11-03 11:17:43 25 4
gpt4 key购买 nike

下表打印了名为 $sqlStr3 的查询的结果。它工作正常。查询设置为返回前 25 个结果。

我想将一个唯一的 CSS 类(在这个问题中称为“class1”)应用于查询中的前十个结果。我该怎么做?

提前致谢

约翰

$result = mysql_query($sqlStr3);
$count = 1;
$arr = array();
echo "<table class=\"samplesrec1edit\">";
while ($row = mysql_fetch_array($result)) {
echo '<tr>';
echo '<td class="sitename1edit2a">'.$count++.'.</td>';
echo '<td class="sitename1edit1"><a href="http://www...com/../members/index.php?profile='.$row["username"].'">'.stripslashes($row["username"]).'</a></td>';
echo '<td class="sitename1edit2">'.number_format(($row["totalScore2"])).'</td>';
echo '</tr>';
}
echo "</table>";

最佳答案

使用这个:

$result = mysql_query($sqlStr3);
$count = 1;
$arr = array();
echo "<table class=\"samplesrec1edit\">";
while ($row = mysql_fetch_array($result)) {
if($count < 11){
echo '<tr class="top-10">';
}else{
echo '<tr class="non-top-10">';
}
echo '<td class="sitename1edit2a">'.$count++.'.</td>';
echo '<td class="sitename1edit1"><a href="http://www...com/../members/index.php?profile='.$row["username"].'">'.stripslashes($row["username"]).'</a></td>';
echo '<td class="sitename1edit2">'.number_format(($row["totalScore2"])).'</td>';
echo '</tr>';
}
echo "</table>";

使用此 css 访问 top10 的 td

.top-10 td{
//definitions
}

并访问非 top10 行的 td

.non-top-10 td{
//definitions
}

关于php - 将不同的 CSS 应用于查询的前 10 个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3904976/

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