下一个和上一个的分页错误


pagination error with next and prev

我进行了以下分页,该分页可以工作,每页打印出 2 篇文章,但是当我按 2 或下一步时没有任何反应

即使在我的脚本顶部有error_reporting,我也没有任何错误

为什么指向页面或下一步按钮的链接不起作用?

<?php
    error_reporting(E_ALL); ini_set("display_errors", 1);
    $db = mysql_connect("localhost", "root", "");
    mysql_select_db("dirts_mysql", $db);
    echo "<h1>articles</h1>";
    $pr_page = 2;
    $number = mysql_result(mysql_query("SELECT COUNT(*) FROM article WHERE category =                 1"), 0) or die(mysql_error());
    $show_from = (isset($_GET["visfra"]) && is_numeric($_GET["visfra"]) && $_GET["visfra"] < $number) ? $_GET["visfra"] : 0;
    $query = mysql_query("SELECT * FROM article ORDER BY id DESC limit $show_from,     $pr_page") or die(mysql_error());
    while ($row = mysql_fetch_array($query)) {
        ?>
        <link rel="stylesheet" type="text/css" href="style.css">
        <div id="news">
            <h2><u><? echo $row['name']; ?></u></h2>
            <p>
                <?php echo nl2br($row['description']); ?>...
            </p>
            <br/><br/>
            <a href="vis.php?id=<? print $row['id']; ?>">[...]</a>
        </div>
    <br>
    <?php
    }
    if ($show_from > 0) {
        $back = $show_from - $pr_page;
        echo "<a href='?showfrom=$back'>Forrige</a> ";
   }
    $page = 1;
    for ($start = 0; $number > $start; $start = $start + $pr_page) {
        if ($show_from != $page * $pr_page - $pr_page) {
            echo "<a href='?showfrom=$start'>$page</a> ";
        } else {
            echo $page . " ";
        }
    $page++;
    }
    if ($show_from < $number - $pr_page) {
        $next = $show_from + $pr_page;
        echo " <a href='?&showfrom=$next'>Næste</a>";
    }
    ?>
这是因为

您正在链接中创建变量showfrom:

    echo " <a href='?&showfrom=$next'>Næste</a>";

但是在读回值时引用 visfra

$show_from = (isset($_GET["visfra"]) && is_numeric($_GET["visfra"]) && $_GET["visfra"] < $number) ? $_GET["visfra"] : 0;