我正在尝试从数据库中检索所有这些数据,将其放入一个表中(如有必要,可以使用多个表),并按列显示它们,分成 4 个,分成多个页面。
我想知道如何让表格水平显示,例如
表头 表头 表头
表 数据 表 数据 表
数据 表 数据 表 数据
而不是:
表头
表数据
表数据
表头
表数据等
这是到目前为止的代码:
// While loop that will display the results in groups of 4
while($row=sqlsrv_fetch_array($result, SQLSRV_FETCH_ASSOC))
{ $newDate = $row['datenow']->format('d/m/Y'); ?>
<table id="syncresults">
<thead>
<tr>
<th scope="col" id="dateheader"> <?php echo $newDate ?></th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $row['nbsactive']; ?></td>
</tr>
<tr>
<td><?php echo $row['nbsmanysynced']; ?></td>
</tr>
<tr>
<td><?php echo $row['nbsthreedays']; ?></td>
</tr>
</tbody>
任何有关如何执行此操作或为我指明正确方向的建议将不胜感激。