我正在使用数据表进行分页,因为它是客户端,所以获取整个数据(超过 50000)会使我的页面太忙而崩溃。这是我的代码。我该怎么办?
$q="select * from table";
$rs = $oAppl->query($q);
<table class="display" id="example">
<thead>
<tr>
<th class="th_title">ID</th>
<th class="th_title"> Name</th>
</tr>
</thead>
<tbody>
<?php
while ( $rw = $oAppl->row($rs) ) {
?>
<tr class="item">
<td ><?php echo $rw["id"]; ?></td>
<td class="subject"><?php echo $rw["name"]; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
$(document).ready(function() {
$('#example').dataTable();
}