欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP实现分页查询的例子代码

程序员文章站 2023-12-30 08:19:40
...
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 {

?>








$noterecs=$noterecs+1;
}
?>
编号 用户名 发表人 文章标题 发表时间
" target="disp">








$pad=0;
for($counter=1;$counter {
if($counter>=10)
{
$pad="";
}

echo("".$pad.$counter." ");
}
?>

以上就介绍了PHP实现分页查询的例子代码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

上一篇:

下一篇: