0

我做了一个页面来从 mysql 数据库中获取数据。我想每页只显示 10 个结果,使用下一个按钮显示其他结果,使用上一个按钮显示上一个结果。

我使用以下代码来获取数据:

$item=$_POST('item');
$query=mysql_query("select name,address,contact from info_tb where keyword='$item'");

while($row=mysql_fetch_array('$query'))
{
echo "Name : row[0]":
echo "Address : row[1]":
echo "Contact : row[2]":
}
4

3 回答 3

2

在您的 mySQL 查询中使用LIMIT关键字。

SELECT * FROM `your_table` LIMIT 0, 10 

好像你想浏览记录,所以..

 SELECT * FROM `your_table` LIMIT 5, 10 

这些记录将显示 6、7、8、9、10、11、12、13、14、15

如果你想导航,你需要控制这个参数,如图所示。

SELECT * FROM `your_table` LIMIT 5, 10
                                 ^  

好像你最近发布了代码,在你的代码上尝试这样的事情。

$item=$_POST['item'];
$page=$_POST['pno'];
$query=mysql_query("select name,address,contact from info_tb where keyword='$item' limit '$page',10");
于 2013-09-14T06:35:24.860 回答
1

对于您的第一页,您必须从数据库中检索前 10 个结果,即 1、2、3 ... 9、10 行:

SELECT * FROM `table` LIMIT 0, 10

并打印出你的结果。如果,假设用户在第 4 页,您将不得不从 31、32、33.. 39、40 行中检索。在 PHP 等服务器脚本中计算偏移量和 row_count:

$page_no = 4;
$row_count = 10; 
$offset = ($page_no - 1) * $row_count; // results 30

现在您的 SQL 将是:

SELECT * FROM `table` LIMIT 30, 10;

因此您将拥有可以打印出来的 31、32、33... 行。可以通过 GET 或 POST 参数检索页码。

于 2013-09-14T06:50:57.643 回答
0

您当然可以打印出整个结果并使用 jQuery 对其进行分页:

<!-- Download jquery and link locally.  Directlinking to jQuery should only be used for testing purposes. -->
<script type='text/javascript' src='http://code.jquery.com/jquery-git2.js'></script>
<script type="text/javascript">
    var pageno = 0;
    var maxpageno = 0;
    function show(){
        if (pageno < 0) { pageno = 0}
        if (pageno > maxpageno) { pageno = maxpageno}
        $('#results tbody tr').hide();
        $('#results tbody tr.page'+pageno).show();
    }
</script>
<body onload="show();">
<?php
    $sql = "SELECT * FROM books";   
    //result is boolean for query other than SELECT, SHOW, DESCRIBE and EXPLAIN
    $result = $short_connect->query($sql);
    if (($result) && ($result->num_rows > 0))
    {
        $results = array();
        print "<table id=\"results\">\n<thead>\n<tr><th>id</th><th>title</th><th>isbn</th><th>ean</th><th>year</th></tr>\n
        <tr><td colspan=5>
        <a href=\"#null\" onclick=\"pageno = 0; show();\">&lt;&lt;</a>
        <a href=\"#null\" onclick=\"pageno--; show();\">&lt;</a>
        <a href=\"#null\" onclick=\"pageno++; show();\">&gt;</a>
        <a href=\"#null\" onclick=\"pageno = maxpageno; show();\">&gt;&gt;</a>
        </th></tr>\n
        </thead>\n<tbody>\n";  //table starter and header
        $i = 0;                       //start count
        $ipp = 10;                        //items per page
        while ($row = $result->fetch_array())
        {
            $rop = $i % $ipp;           //result on page
            $pno = floor($i / $ipp);        //page number
            $i++;                         //increase count
            print "<tr class=\"page$pno\"><td>$row[0]</td><td>$row[1]</td><td>$row[2]</td><td>$row[3]</td><td>$row[4]</td></tr>\n";
        }
        print "</tbody>\n<tfoot><tr><td colspan=5>
        <a href=\"#null\" onclick=\"pageno = 0; show();\">&lt;&lt;</a>
        <a href=\"#null\" onclick=\"pageno--; show();\">&lt;</a>
        <a href=\"#null\" onclick=\"pageno++; show();\">&gt;</a>
        <a href=\"#null\" onclick=\"pageno = maxpageno; show();\">&gt;&gt;</a>
        </td></tr>\n</tfoot>\n</table>\n"; // footer
        $result->free();
    }
    $short_connect->close();
    print "<script type=\"text/javascript\"> maxpageno = $pno;</script>";
?>
</body>
于 2013-09-14T10:25:47.723 回答