2

我正在用 SQL 记录学生的表现。只有2列。

sl no. Name    Points
1      Admam    89
2      Russel   86
3      Andy     79
4      Lance    76
5      Steve    75
6      jack     74
7      Phil     70
8      mark     67
9      kevin    65
10     andrew   65
11     brian    64
12     pat      63

这是 SQL 报告格式。我需要为每 3 名学生的表格着色。前 3 名学生(1、2、3)被称为“钻石”,因此 3 行需要为灰色。接下来的 3 名学生 (4,5,6) 称为“白金”,因此 3 行需要涂成绿色。

但在下一行,Phi、Mark、Kevin 需要将颜色设为黄色。但安德鲁也加入了凯文,因为同样的观点。所以现在 4 行应该被着色为黄色.. 请让我知道该怎么做....

4

2 回答 2

0

看看这个小提琴phpfiddle

     <?php
        $points=array(1,1,1,2,2,3,3,3,3);
        $color= array(1=>'red',2=>'green',3=>'yellow');
    ?>

        <table width="100%">
            <?php
        foreach($points as $key=>$grade)
        {?>
        <tr>
        <td style="color:<?php if( $key!=0 &&  $points[$key]!=$points[$key-1] )
        {echo $color[$grade];} else{ if(($key+1)%3==0)
{ echo $color[$grade];} else {echo $color[$grade];} } ?>">
student <?php echo $key;  ?></td>
        </tr>
        <?php }?>
    </table>
于 2012-10-17T03:45:42.987 回答
0

像这样为每个范围点使用颜色

$colors = array(
    1 => 'grey',
    2 => 'green',
    3 => 'yellow',
    4 => 'black'
);
$i = 0;
$color_id = 0;
$lastpoint = -1;
foreach($students as $id=>$student) {
   $color_id += ($i % 3 == 0 && $student['point'] != $lastpoint) ? 1 : 0;
   $lastpoint = $student['point'];
?>
<tr>
    <td style="color:<?php echo colors[$color_id];?>";>
        <?php echo $student['name']; ?>
    </td>
</tr>
<?php
}
于 2012-10-17T03:54:43.113 回答