我是使用笨新的,我想问问如何使动态表,这样当我选择从anytable形式的数据库中的数据也可以是契合的表,甚至字段是不同的。
因此,在一般情况下我显示这样的表:
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#Number</th>
<th scope="col">Field</th>
</tr>
</thead>
<tbody>
<?php
$no = 1;
foreach ($data as $row) {?>
<tr>
<th scope="row"><?php echo $no++?></th>
<td><?php echo $row->COLUMN_NAME ?></td>
</tr>
<?php } ?>
</tbody>
</table>
但是当我使用3场以上的现场就不能配合的问题,所以对于它的任何建议?