本文整理汇总了PHP中crud::paging方法的典型用法代码示例。如果您正苦于以下问题:PHP crud::paging方法的具体用法?PHP crud::paging怎么用?PHP crud::paging使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crud
的用法示例。
在下文中一共展示了crud::paging方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<div class="col-md-2">
<a href="../mysql/add_goals.php" class="btn btn-large btn-info"><i class="glyphicon glyphicon-plus"></i> Add a Goal</a>
</div>
<div class="col-md-8">
<div class="clearfix"></div>
<table class='table table-bordered table-responsive'>
<tr>
<th style="width:10%">Timeframe</th>
<th style="width:40%">Goal</th>
<th style="width:40%">How</th>
<th colspan="2" align="center">Actions</th>
</tr>
<?php
$query = "SELECT * FROM `xff_goals` where `user_id` ='" . $_SESSION['uid'] . "'";
$records_per_page = 5;
$newquery = $crud->paging($query, $records_per_page);
$crud->dataview($newquery);
?>
<tr>
<td colspan="7" align="center">
<div class="pagination-wrap">
<?php
$crud->paginglink($query, $records_per_page);
?>
</div>
</td>
</tr>
</table>