分页表仅在某些页面上不显示数据

时间:2018-06-02 14:28:27

标签: php

我的表显示了5行,并使用分页转到其他数据。我的问题是,我的表没有显示其他数据,除非总行可以被5整除

$page=$_GET["page"];

        if ($page=="" || $page=="1") {
                $page1=0;     
        }
        else {
            $page1=($page*5)-5;
        }

    $sql = "SELECT * from project order by province ASC LIMIT $page1,5";
    $result = mysqli_query($con,$sql); 

    $sql2 = "SELECT * from project ";
    $res = mysqli_query($con,$sql2);
    $pagen = mysqli_num_rows($res);

    $a = $pagen/5;
    /* echo ceil($a);*/


    ?>

0 个答案:

没有答案