我需要一个在我的分类广告网站上显示结果的公式。
我现在已经完成了记录的分页,但这个显示结果的公式仍然存在。
我想这样:
Showing 1-50 of 123 found.
现在这个公式是什么?
我认为这些变量应该足够了:
$results_per_page = 50; //results per page
$page = 1; //current page
Also a variable called $num_total contains the total nr of hits, in this case 123.
由于
答案 0 :(得分:1)
这是你想要的吗?
<?php
$page = 1;
$results_per_page = 50;
$num_total = 123;
echo 'Showing ' . ((($page - 1) * $results_per_page) + 1)
. '-' . min($num_total, ($page * $results_per_page))
. ' of ' . $num_total . ' found.';
?>