任何人都可以帮助我使用此代码来限制每页的数量,
function PageMain() {
global $TMPL;
$text = $_GET['a'];
$name = urldecode(htmlEntities($_GET['q']));
// pagination
$per_page = 10;
$page_query = mysql_query("SELECT COUNT(genres) from table WHERE genres LIKE '%%$name%'");
$pages = @ceil(mysql_result($page_query, 0) / $per_page);
$page = (isset($_GET['page']) AND (int)$_GET['page'] > 0) ? (int)$_GET['page'] : 1;
$start = ($page - 1) * $per_page;
$skin = new skin('shared/pagination'); $pagination = '';
if ($pages >= 1 && $page <= $pages) {
for ($x=1; $x<=$pages; $x++) {
$TMPL['pagination'] = ($x == $page) ? '<a class="active" href="/index.php?a=genre&q='.urlencode($name).'&page='.$x.'">'.$x.'</a> ' : '<a href="/index.php?a=genre&q='.urlencode($name).'&page='.$x.'">'.$x.'</a> ';
$pagination .= $skin->make();
}
}
$TMPL['pagination'] = $pagination;
}
现在看起来像这张照片:
我需要做这样的事情,下一页和最后一页: