创建一个简单的分页

时间:2016-02-14 10:42:31

标签: php pagination

Here's a screenshot of the page that I want to put a pagination 以下是我的代码,我想创建一个简单的分页。我尝试了本网站提供的一些示例,但遗憾的是它对我不起作用,或者我可能在代码中遗漏了一些内容。

<?php
session_start();
$server = 'localhost';
$user = 'root';
$pass = 'root';
$connect = mysql_connect($server,$user,$pass)
or die(mysql_error());

$selectdb = mysql_select_db('des')
or die(mysql_error());

?>

<form  method="post" name="action_form" action="admin2.php">
<div id="gallery1" class="lbGallery">
<table class="table" width="100%" cellpadding="10">
            <tbody>

            <?php

            $allRecords = mysql_query('select * from cms ORDER BY id DESC limit 4');
            if(is_resource($allRecords))
            {
                while($row = mysql_fetch_assoc($allRecords))
                {
                    ?>
                    <tr><ul>
                        <td width="30%"><li style="list-style:none"><a href="uploads/<?php echo $row['image'];?>"/><img src="uploads/<?php echo $row['image'];?>"/></li></td>
                        <td style="float:left; font-size:16px"><?php echo $row['name']; ?></td>
                        </ul>
                    </tr>
                    <?php
                }
            }
            ?>
          </tbody>
</table>
</div>
</form> 

1 个答案:

答案 0 :(得分:1)

试试这个。做的是:

  • 在变量$ offset
  • 中创建一个新的$ amount
  • 创建一个链接(下一个),使用该链接将$ offset的值发送回脚本
  • 抓住$ _GET ['offset'];
  • 中的值
  • 将$ amount的值添加到$ offset以创建新的偏移。
  • 使用LIMIT的新值
  • 再次运行MySQL语句

我没有真正测试这段代码的错误,但你会得到一般的想法。希望这有任何帮助。

(最好通过te方式使用新的mysql i 语句。)

<?php
            $amount = 4;
            if (!empty($_GET['offset']))
            {
                $offset = $_GET['offset'] + $amount;
            }
            else
            {
                $offset = 1;
            }



            $allRecords = mysql_query('select * from cms ORDER BY id DESC limit $amount,$offset');
            if(is_resource($allRecords))
            {
                while($row = mysql_fetch_assoc($allRecords))
                {
                    ?>
                    <tr><ul>
                        <td width="30%"><li style="list-style:none"><a href="uploads/<?php echo $row['image'];?>"/><img src="uploads/<?php echo $row['image'];?>"/></li></td>
                        <td style="float:left; font-size:16px"><?php echo $row['name']; ?></td>
                        </ul>
                    </tr>
                <tr>
                <td colspan="2">
                    <a href="<?php echo $_SERVER['PHP_SELF']; ?>?offset=<?php echo $offset;?>">Next</a>
                </td>
                </tr>
                    <?php
                }
            }
            ?>