本文整理汇总了PHP中Ad::paginate方法的典型用法代码示例。如果您正苦于以下问题:PHP Ad::paginate方法的具体用法?PHP Ad::paginate怎么用?PHP Ad::paginate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ad
的用法示例。
在下文中一共展示了Ad::paginate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
require_once '../bootstrap.php';
// require_once '../views/partials/header.php';
if (!Auth::checkUser()) {
header("Location: /auth.login.php");
exit;
}
$limit = 6;
$count = Ad::count();
$numPages = ceil($count / $limit);
$page = isset($_GET['page']) ? $_GET['page'] : 1;
$offset = ($page - 1) * 4;
$nextPage = $page + 1;
$prevPage = $page - 1;
$errors = [];
$items = Ad::paginate($limit, $offset);
?>
<html>
<head>
<title>WoW Lister</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/main.css">
<style>
body {
background-image: url("/img/auction.jpg");
background-attachment: fixed;
}
table {