首页 > 作文

实现“上一页”和“下一页按钮

更新时间:2023-04-06 05:48:04 阅读: 评论:0

<?php

//本例子摘自phpbuilder.com

//稍加翻译

//<sprming@netea.com>

$limit=20; // 每页显示的行数

$numhave第三人称单数形式results=mysql_query(“lect * from table where your conditional here order by whatever”);//换成你所需要的sql语句

$numrows=mysql_num_rows($numresults);

// next determine if offt has been pasd to script, if not u 0

if (empty($offt)) {

$offt=1;

}

// 得到查询结果

$result=mysql_query(“lect id,name,phone “.

“from table where your conditional here “.

“order by whatever limit $offt,$limit”);

// 现在显示查询结果

while ($data=mysql_fetch_array($result)) {

// 在这里插入您要显示的结果以及样式

}

// 显示按钮

if ($offt!=1) { // bypass prev link if offt is 1

$prevofft=$offt-20;

print “<a href=\”$php_lf?offt=$prevofft\”>上一页</a> \n”;

合作作文}

// 计算页面数

$pages=intval($numrows/$limit);

// $pages now contains int of pages needed unless there is a remai同舍生皆被绮绣nder from division

if ($numrows%$limit) {

// has remainder so add one page

$pages++;

}

for ($i=1;$i<=$pages;$i++) { // 显示页数

$newofft=$limit*($i-1);

print “<a href=\”$php_lf?offt=$newofft\”>$i</a> \n”;

}

// check to e if last page

if (!(($offt/$limit)==$pages)有机亚麻籽油 && $pages!=1) {

// not last page so give next link

$newofft=$offt+$limit;

print “<a href=\”$php_lf?offt=$newofft\”>下一页</a><前景好的专业p>\n”;

}

?>

本文发布于:2023-04-06 05:48:02,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/767ef51a4f18896e7de14060ce35a7a9.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:实现“上一页”和“下一页按钮.doc

本文 PDF 下载地址:实现“上一页”和“下一页按钮.pdf

上一篇:梦见两条大蛇
下一篇:返回列表
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图