如何为此脚本创建分页:
if(isset($_GET['cat'])){
$cat_id=$_GET['cat'];
$get_cat_pro = "select * from products where cat_id='$cat_id'";
$run_cat_pro = mysqli_query($db, $get_cat_pro);
$count=mysqli_num_rows($run_cat_pro);
if($count==0){
echo "<h2>No Product Found in This Categroies!</h2>";
}
while ($row_cat_pro=mysqli_fetch_array($run_cat_pro)){
$pro_id = $row_cat_pro['product_id'];
$pro_title = substr($row_cat_pro['product_title'],0,25);
$pro_cat = $row_cat_pro['cat_id'];
$pro_brand = $row_cat_pro['brand_id'];
$pro_desc = $row_cat_pro['product_desc'];
$pro_image = $row_cat_pro['product_img1'];
echo "
<div id='single_product' style='margin:0.5%; width:242px; height:470px; float:left; border:5px solid white; box-shadow:0px 0px 10px #000;' class='bg-warning'>
<a href='details.php?pro_id=$pro_id' style='text-decoration:none;'>
<h5 style='margin-left:10%; text-decoration:none;'><b>$pro_title...</b></h5>
</a>
<p>
<a href='details.php?pro_id=$pro_id' style='text-decoration:none;'>
<img src='products_images/$pro_image' style='border:5px solid white;' width='210' height='210' vspace='10' hspace='10'/>
</a>
<br><br><b style='margin-left:10%;'>Views:</b>    
<span class='badge'>15000</span>
<br><b style='margin-left:10%;'>Downloads:</b>  
<span class='badge'>100</span>
</p>
</div>
";
}
}
答案 0 :(得分:0)
首先你需要添加&#34; LIMIT N,M&#34;查询,其中N代表偏移量,M代表结果量。
接下来你需要做一些数学运算。
例如,如果您希望每页有6个结果
你的LIMIT看起来像这个LIMIT 0,6。但只在第一页上。 所以现在,您需要一个保存当前页面的Get参数。
所以你可以乘以当前页面。
例如0,6是第一页,第二页需要从7开始到13结束等等