gpt4 book ai didi

php - 如何在zend框架中对表进行分页?

转载 作者:行者123 更新时间:2023-11-29 22:01:02 25 4
gpt4 key购买 nike

我正在使用 zend 框架,并希望根据从 MySQL 表接收到的数据对目录进行分页。我只想在 html 表格中显示 10 行。

这是我的.phtml代码..

<div class="panel-body">
<?php
if(isset($this->ErrorMessage))
echo "<div class='alert alert-danger'>" . $this->ErrorMessage . "</div>";
if(isset($this->success))
echo "<div class='alert alert-success'>" . $this->success . "</div>";
echo $this->form;
?>

<!-- / .table -->
<div class="table-responsive">
<table class="table table-striped table-hover dataTable table-bordered no-footer" role="grid">
<thead>
<tr>
<th>ID</th>
<th>Name</th>

</tr>
</thead>
<tbody>
<?php if(isset($this->results)) { ?>
<?php foreach($this->results as $result) { ?>
<tr>
<td><?php echo $result->id; ?></td>
<td><?php echo $result->name; ?></td>

</tr>
<?php } ?>
<?php } ?>
</tbody>
</table>
</div>

</div>

那么我如何添加分页...

最佳答案

您没有说明是否要在客户端或服务器端分页。如果你想在客户端分页,最简单的方法就是使用 JQuery DataTables:

https://www.datatables.net/

示例:

$(document).ready(function() {
$('.dataTable').DataTable();
} );

关于php - 如何在zend框架中对表进行分页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32644383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com