-3

我想用来自 sql 的数据生成一个 html 表。到目前为止,我已经能够做到这一点。

<div class="row-fluid">
    <!-- BEGIN EXAMPLE TABLE PORTLET-->
    <div class="portlet box blue">
        <div class="portlet-title">
            <div class="caption">
                <i class="icon-edit"></i>Attendance
            </div>
        </div>
        <div class="portlet-body">
            <div class="clearfix">
            </div>
            <?php echo "<form id='insertAtt' action='insertAtt2.php' method='post'>
            " ?>
            <table class="table table-striped table-hover table-bordered" id="studAtt">
            <tbody>
            <?php
$result = mysqli_query($con," SELECT date,t1.studID,studName,Class,attendance FROM mate_student as t1, mate_student_att as t2 WHERE t1.studID=t2.studID ORDER BY date"); 
                        $date = '';
$att = '';
$prevDate='';
  while($row = mysqli_fetch_assoc($result)){
    $curDate= '<td>
            '.$row['date'].'
        </td>
        '; $att= '
        <tr>
            <td>
                '.$row['attendance'].'
            </td>
        </tr>
        '; if( $curDate!=$prevDate) {echo $curDate; } echo $att; $prevDate=$curDate; } ?>
    </div>
    <!-- END EXAMPLE TABLE PORTLET-->
</div>
</div>
<!-- END PAGE CONTENT -->
</div>
<!-- END PAGE CONTAINER-->
</div>

结果是这样的。

|2013-08-17|
|yes       |
|no        |
|yes       |
|yes       |
|no        |
|2013-08-18|
|no        |
|no        |
|yes       |
|yes       |
|no        |

我试图弄清楚如何打印它,以便每个日期都是一个新列。

|2013-08-17|2013-08-18|
|yes       |no        |
|no        |no        |
|yes       |yes       |
|yes       |yes       |
|no        |no        |

可能吗?我该怎么做?我见过有人水平打印代码。但它不是这样的。我知道这都是关于我不太擅长的逻辑。在这里,我一直在尝试使用<td><tr>组合来将日期作为表头,但到目前为止还没有那么幸运。

4

1 回答 1

0

我首先误解了你的问题,现在我想我明白了。您需要使用 sql 的输出创建一个多维数组,然后重新组织它们,您可以使用 for 循环来执行此操作。检查下面的代码,只有您可以测试它,但如果您有问题,我可以提供更多帮助。

我还在这里做了一个演示,重新创建了值,因为我没有你的 sql 数据。此代码适用于多个日期,而不仅仅是您发布的 2 个。按 F9 运行演示。

<div class="row-fluid">
    <!-- BEGIN EXAMPLE TABLE PORTLET-->
    <div class="portlet box blue">
        <div class="portlet-title">
            <div class="caption">
                <i class="icon-edit"></i>Attendance
            </div>
        </div>
        <div class="portlet-body">
            <div class="clearfix">
            </div>
            <?php echo "<form id='insertAtt' action='insertAtt2.php' method='post'>" ?>
            <table class="table table-striped table-hover table-bordered" id="studAtt">
            <tbody>
            <?php
                $result = mysqli_query($con," SELECT date,t1.studID,studName,Class,attendance FROM mate_student as t1, mate_student_att as t2 WHERE t1.studID=t2.studID ORDER BY date"); 
                                        $date = '';
                $att = '';
                $prevDate='';
                $tbi = -1;
                $table_array = array();
                while($row = mysqli_fetch_assoc($result)){

                    $curDate= '<td>
                            '.$row['date'].'
                        </td>
                        '; 
                    $att.= ',
                        <tr>
                            <td>
                                '.$row['attendance'].'
                            </td>
                        </tr>
                        '; 
                    if( $curDate!=$prevDate) {
                        $tbi++;
                        $table_array[$tbi][]= $curDate;
                    }  
                    $table_array[$tbi][] = $att;
                } 
                            $trow='';
                for ($x = 0; $x < count($table[0]); $x++) {

                    $trow.='<tr>';
                    for ($ti = 0; $ti < count($table); $ti++) {
                        $trow.='<td>'.$table[$ti][$x].'</td>';
                    }
                    $trow.='</tr>';

                }
                echo $trow;
            ?>
        </tbody>
        </table>
    </div>
    <!-- END EXAMPLE TABLE PORTLET-->
</div>
</div>
<!-- END PAGE CONTENT -->
</div>
<!-- END PAGE CONTAINER-->
</div>
于 2013-08-03T21:09:22.843 回答