0

我使用了 php 分页教程:http ://www.phpeasystep.com/phptu/29.html 。正如它所说的那样,这很容易,我没想到会出现任何问题。不过,我遇到过一个。现在我知道为了最好的结果你应该看到我的源代码,所以我会提供它。问题是它查询得很好,如果成员是正确的,它只会在页面上显示某些数据,并将其限制为每页只有几个......但是当我尝试更改以查看更多评论时,它不会改变值下一个页。

        <?php
        /*  $dbLink = mysql_connect("localhost", "sco0100_james", "creeper");
            mysql_query("SET character_set_results=utf8", $dbLink);
            mb_language('uni');
            mb_internal_encoding('UTF-8');
        */

        include('config.php');  // include your code to connect to DB.

        $tbl_name="commenttable";  //your table name
        $adjacents = 3;        

    /* 
    First get total number of rows in data table. 
    If you have a WHERE clause in your query, make sure you mirror it here.
    */

        $query = "SELECT COUNT(*) as num FROM $tbl_name";
        $total_pages = mysql_fetch_array(mysql_query($query));
        $total_pages = $total_pages[num];

        /* Setup vars for query. */
        $targetpage = "profile.php?id=$id"; //the name of this file
        $limit = 3;             //how many items to show per page
        $page = $_GET['page'];

        if($page) 
            $start = ($page - 1) * $limit;  
                           //first item to display on this page
        else
            $start = 0;    //if no page var is given, set start to 0

        /* Get data. */
        $sql = "SELECT id, name, comment, member1, member2 FROM $tbl_name WHERE member2='".$id."' ORDER BY id ASC LIMIT $start, $limit";
        $result = mysql_query($sql);

        /* Setup page vars for display. */
        if ($page == 0) 
            $page = 1;  //if no page var is given, default to 1.

        $prev = $page - 1;  //previous page is page - 1
        $next = $page + 1;  //next page is page + 1
        $lastpage = ceil($total_pages/$limit);      
                    //lastpage is = total pages / items per page, rounded up.
        $lpm1 = $lastpage - 1;  //last page minus 1

    /* 
        Now we apply our rules and draw the pagination object. 
        We're actually saving the code to a variable in case 
                    we want to draw it more than once.
    */

        $pagination = "";

        if($lastpage > 1)
        {   
            $pagination .= "<div class=\"pagination\">";

            //previous button
            if ($page > 1) 
                $pagination.= "<a href=\"$targetpage?page=$prev\">previous</a>";
            else
                $pagination.= "<span class=\"disabled\">� previous</span>"; 

            //pages 
            if ($lastpage < 7 + ($adjacents * 2))   
                            //not enough pages to bother breaking it up
            {   
                for ($counter = 1; $counter <= $lastpage; $counter++)
                {
                    if ($counter == $page)
                        $pagination.= "<span class=\"current\">$counter</span>";
                    else
                        $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                 
                }
            }

            elseif($lastpage > 5 + ($adjacents * 2))    
                             //enough pages to hide some
            {
                //close to beginning; only hide later pages
                if($page < 1 + ($adjacents * 2))        
                {
                    for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
                    {
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                 
                    }

                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                }

                //in middle; hide some front and some back
                elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
                {
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";

                    for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
                    {
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                 
                    }

                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                }

                //close to end; only hide early pages
                else
                {
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";

                    for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)
                    {
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else    
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                 
                    }
                }
            }

    //next button
    if ($page < $counter - 1) 
        $pagination.= "<a href=\"$targetpage?page=$next\">next</a>";
    else
        $pagination.= "<span class=\"disabled\">next</span>";
        $pagination.= "</div>\n";       
}

    while($row = mysql_fetch_array($result))
    {
        $cname= $row['name'];
        $comment= $row['comment'];
        echo $cname . '<br/>' . '<br/>' . $comment . '<br/>' . '<br/>' . '<hr size="1"/>';
    }
?>

    <?=$pagination?>

我怀疑问题可能出在我的 $targetpage 上,它根据每个不同用户的 id 为配置文件打开不同的数据。但我不知道如何纠正这个问题,或者如果这甚至是问题......任何人都可以看到有什么问题吗?(固定的)

4

2 回答 2

1

是的,$targetpage不正确:

 $targetpage = "profile.php?id=$id";

会产生类似profile.php?id=42. 然后在您的网址中使用该字符串:

 <a href=\"$targetpage?page=$counter etc..." />

它为您提供了实际生成的 HTML:

 <a href="profile.php?id=42?page=XXX" />

这是不正确的。查询字符串应该只有一个 SINGLE ?。您需要&用于后续参数,例如:

 <a href=\"$targetpage&page=$counter etc..." />
                      ^--- &, not ?
于 2013-08-13T18:46:11.207 回答
0

您的 SQL 查询应该包含一个 TOP 和一个 LIMIT 值,因此您可以选择您想要的范围(页面)。与此类似的东西:

$items_per_page = 10;
$query = "SELECT TOP $items_per_page * FROM table LIMIT ". $items_per_page * $REQUEST['page'];
于 2013-08-13T18:35:47.963 回答