欢迎来到福编程网,本站提供各种互联网专业知识!

PHP实现分页的一个示例

发布时间:2006-10-09 作者: 来源:转载
编号用户名发表人文章标题发表时间

if(!$whichpage)

{

$notepage=1;

}

else

{

$notepage=$whichpage;

}

$noterecs=0;

$pagesize=10;

$bbsconn=mysql_connect("localhost","root");

mysql_select_db("rainwindy",$bbsconn);

$bbsresult=mysql_query("select * from bbs order by id desc",$bbsconn);

$rsnum=mysql_num_rows($bbsresult);

$pagecount=ceil($rsnum/$pagesize);

mysql_data_seek($bbsresult,($notepage-1)*10);

?>

while(($bbsrow=mysql_fetch_array($bbsresult)) && ($noterecs<=9))

{

?>

$noterecs=$noterecs+1;

}

?>

编号 用户名 发表人 文章标题 发表时间
" target="disp">

$pad=0;

for($counter=1;$counter<=$pagecount;$counter++)

{

if($counter>=10)

{

$pad="";

}

echo("".$pad.$counter."");

}

?>

相关推荐