0

我进行了以下分页,每页打印出 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>";
    }
    ?>
4

1 回答 1

0

这是因为您在链接中创建了一个变量 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;
于 2013-10-31T11:34:19.083 回答