我正在努力了解使用php和mysql引入分页的最佳方法。我在下面的代码中尝试显示前5个按钮(例如1-5),但是我希望“下一个按钮”显示5-10,然后显示10-15,依此类推。任何帮助表示赞赏。
$q=mysql_query("SELECT * FROM posts WHERE $ctq approved=1 Limit 15");
$pages = ceil(mysql_num_rows($q)/$item_per_page)+1;
//create pagination
if($pages > 0)
{
for($i = 1; $i<$pages; $i++)
{
$pagination .= '<a href="#" id="'.$i.'-page" class="inactive paginate_click">'.$i.'</a>';
}
}
$ctajax='';
if(isset($_GET['cat_id']) && !empty($_GET['cat_id'])){
$ctajax.=",'cat_id':".$_GET['cat_id'];
}
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
$("#results").load("fetch_pages.php", {'page':0<?php echo $ctajax ?>}, function() {
$("#1-page").removeClass('inactive').addClass('current');
});
//initial page number to load
$(".paginate_click").click(function (e) {
$("#results").prepend('<div class="loading-indication"><img src="ajax-loader.gif" /> Loading...</div>');
var clicked_id = $(this).attr("id").split("-"); //ID of clicked element, split() to get page number.
var page_num = parseInt(clicked_id[0]); //clicked_id[0] holds the page number we need
$('.paginate_click').addClass('inactive');
$('.paginate_click').removeClass('current'); //remove any active class
//post page number and load returned data into result element
//notice (page_num-1), subtract 1 to get actual starting point
$("#results").load("fetch_pages.php", {'page':(page_num-1)}, function(){
});
$(this).addClass('current'); //add active class to currently clicked element (style purpose)
return false; //prevent going to herf link
});
});
</script>
<div id="results"></div>
<nav role="navigation" id="nav-below" class="site-navigation paging-navigation clearfix">
<div class="pagination">
<?php echo $pagination; ?>
<a href="#" id="<?php echo $iadd;?>-page" class="inactive paginate_click">Next</a>
</div>
</nav>
<?php } ?>
<!-- #nav-below -->
</section>
<!-- /#content -->
答案 0 :(得分:2)
limit 15
仅给您前15行,如果您想要下15行,则可以使用LIMIT 15 OFFSET 15
。
您还希望对SQL进行“排序依据”以避免随机结果。
如果结果集很大并且您没有使用索引,则此方法可能会导致严重的性能问题。还有其他方法可以解决这个问题,并且可能是一个涉及更多的答案。