求一款HTML网页分页翻页代码

要代码。。。。只要是方便实用的就好。。。。最好是带数字翻页的。。。不带也可以。。。。麻烦有的朋友帮下忙。。在写下怎么设置代码。。代码设置那里。。。写清楚点。。我万分感谢。... 要代码。。。。只要是方便实用的就好。。。。最好是带数字翻页的。。。不带也可以。。。。麻烦有的朋友帮下忙。。在写下怎么设置代码。。代码设置那里。。。写清楚点。。我万分感谢。。好了我加分。。。急等.... 展开
 我来答
hhiiuxx
推荐于2016-11-05 · TA获得超过174个赞
知道答主
回答量:152
采纳率:0%
帮助的人:94.6万
展开全部
PHP的
<?php
include_once("../../config/config.php");
$conn = mysql_connect ($DBhost, $DBuser, $DBpaswd) or die("fail to connect to db");
mysql_select_db($DBname) or die("fail to select db");

$str = $_GET['page'];
if($str < 1)
{
$str = "1";
}

$page = intval($str);//which page
$msg_count = mysql_query("select count(id) as rscont from message");

$rs_count = 0;
while($ro = mysql_fetch_object($msg_count))
{
$rs_count = $ro->rscont;
}//total data

$pagesize=5; //total page

$sql="select * from message order by con_time DESC limit ".($page-1) * $pagesize.",".$pagesize."";

mysql_query("set names 'utf8'");
$result=mysql_query ($sql) or die("fail to query");

$pagecount=0;
if(($rs_count/$pagesize)!=0)
{
$pagecount=intval($rs_count/$pagesize)+1;
}
else
{
$pagecount=$rs_count/$pagesize;
}

if($page<1)
{
$page=1;
}
else
{
if($page>$pagecount)
{
$page=$pagecount;
}
}

if (mysql_num_rows($result)>0){
$msg_no = 1; //message number. TBD,num should be plus after change page
while($row=mysql_fetch_object($result)){
?>
<div id="each-content">
<div id="title">
<div id="content-header" >
<span>#:<?php echo "$msg_no" ?></span>
<span class="content-name">By: <?php echo "$row->username" ?></span>
<span class="content-time">Create at: <?php echo "$row->con_time" ?></span>
</div>
</div>

<div id="content-body">
<div class="DivUnderline">
<table width="100%"><tr><td>Title: <span id="msg_title_"><?php echo "$row->con_title" ?></span></td>
<td style="text-align:right">
<a name="msg_updates_<?php echo "$row->id" ?>" style="display:none" href="message_update.php?id=<?php echo "$row->id" ?>">[update]</a>
<a name="msg_deletes" style="display:none" href="message_delete.php?id=<?php echo "$row->id" ?>">[delete]</a>
</td></tr></table>
<hr>
</div>
<div class="DivNotification"><?php echo "$row->content"?></div>
</div>

<div id="reply">
<span class="content-name"> Admin replay:<br/></span><span id="reply-content"><?php echo "$row->reply" ?></span>
</div>
</div>
<?php
$msg_no++;
}
}
else
{
?>
<span>There is no message in this page!</span>
<?php
}

//show update button and delete button
include "message_buttons.php";
?>
<div id="fenye">
Current page[<?php echo $page."/".$pagecount ?>]
<a href="message_index.php?page=1">[First page]</a>
<a href="message_index.php?page=<?php echo $page-1 ?>">[Last page]</a>
<a href="message_index.php?page=<?php echo $page+1 ?>">[Next page]</a>
<a href="message_index.php?page=<?php echo $pagecount ?>">[End]</a>
</div>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
472694416
2009-08-07 · TA获得超过6246个赞
知道小有建树答主
回答量:1204
采纳率:0%
帮助的人:733万
展开全部
如果是HTML的话我只知道分页用最原始的方法
一页一页的加
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式