繁体   English   中英

更改行的颜色以获取表中的最高值

[英]Change colour of rows for highest value in table

我在PHP中创建了一个简单的html表。 这是我的代码:

  <div id="wrapper">
        <div class="chart">
            <h2>Files Uploaded to Knowledge Base</h2>
            <table id="data-table" border="1" cellpadding="10" cellspacing="0">


            <tr id=header>
                    <td>Users</td>
                    <td id=center>Project Files</td>
                    <td id=center>Process Files</td>
                    <td id=center>System Files</td>
                    <td id=center>Total Files</td>
            </tr>   

                        <?php

                        $di = new RecursiveDirectoryIterator('upload/project/');
                        foreach (new RecursiveIteratorIterator($di) as $filename => $file) {

                        $pos = 15;
                        $file = substr("$filename", +$pos); 

                        $lenght = strlen($file);
                        $pos = strpos($file, "/");
                        $file = substr("$file",0,$pos);
                        if($file1 != '.DS_Store'){

                            $serverfiles = mysql_query("SELECT uploader FROM Project WHERE location = '$file'");

                            while($row = mysql_fetch_array($serverfiles)) {
                                $occurance1 = $row['uploader'];
                                $array1[] = $occurance1; 
                                }
                            }                           
                        }




                        $di = new RecursiveDirectoryIterator('upload/process/');
                        foreach (new RecursiveIteratorIterator($di) as $filename => $file) {

                        $pos = 15;
                        $file = substr("$filename", +$pos);                         
                        $lenght = strlen($file);
                        $pos = strpos($file, "/");
                        $file = substr("$file",0,$pos);

                        if($file != '.DS_Store'){

                            $serverfiles = mysql_query("SELECT uploader FROM Process WHERE processlocation = '$file'");

                            while($row = mysql_fetch_array($serverfiles)) {
                                $occurance2 = $row['uploader'];
                                $array2[] = $occurance2; 
                                }
                            }                           
                        }

                        $di = new RecursiveDirectoryIterator('upload/system/');
                        foreach (new RecursiveIteratorIterator($di) as $filename => $file) {

                        $pos = 14;
                        $file = substr("$filename", +$pos);                         
                        $lenght = strlen($file);
                        $pos = strpos($file, "/");
                        $file = substr("$file",0,$pos);
                        if($file != '.DS_Store'){

                            $serverfiles = mysql_query("SELECT uploader FROM System WHERE location = '$file'");

                            while($row = mysql_fetch_array($serverfiles)) {
                                $occurance3 = $row['uploader'];
                                $array3[] = $occurance3; 
                                }
                            }                           
                        }

                        $table_rows = array();
                        $counter = 0;
                        $uploader = mysql_query("Select username from members");
                        while($Load = mysql_fetch_array($uploader)){
                        $value = $Load['username'];

                        $tmp = array_count_values($array1);
                        $cnt = $tmp[$value];

                        $tmp2 = array_count_values($array2);
                        $cnt2 = $tmp2[$value];

                        $tmp3 = array_count_values($array3);
                        $cnt3 = $tmp3[$value];

                        $total = $cnt + $cnt2 + $cnt3;

                        //putting the values into array
                        $counter++;
                        $table_rows[$counter] = array();
                        $table_rows[$counter]['username'] = $value;
                        $table_rows[$counter]['project'] = $cnt;
                        $table_rows[$counter]['process'] = $cnt2;
                        $table_rows[$counter]['system'] = $cnt3;
                        $table_rows[$counter]['total'] = $total;
                        }

                        //function to sort the highest total value
                        function cmp_rows($a,$b) {
                        if ($a['total'] == $b['total']) {
                        return 0;
                        }
                        return ($a['total'] > $b['total']) ? -1 : 1;
                        }

                        usort($table_rows, 'cmp_rows');

                        //loop that prints values
                        foreach($table_rows as $row) {
                        echo "<tr>";
                        echo "<td>{$row['username']}</td>";
                        echo"<td id=center>{$row['project']}</td>";
                        echo"<td id=center>{$row['process']}</td>";
                        echo "<td id=center>{$row['system']}</td>";
                        echo "<td id=center>{$row['total']}</td>";
                        }


                        ?>

            </table>

    </div>

    </body></html>

用户是从数据库表中填充的。 通过读取和计数目录中的文件数量来填充文件图形。 该表按最高优先顺序排序。 我希望第一行,第二行和第三行与其余行具有不同的颜色。

我不知道该怎么做。 有人可以指导我正确的方向吗?

谢谢!

在输出的表行显示以下内容时,将一个键添加到foreach中,然后创建一个简单的if / else语句:

> foreach( $table_rows as $key => $row ) {
>     if ( $key < 3 ) { 
>       echo "<tr style="background color here">; 
>     } 
>     else { 
>       echo "<tr>";
>     }
>     //Rest of Code Here }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM