当前位置:Gxlcms > PHP教程 > 关于PHP的分页代码_PHP教程

关于PHP的分页代码_PHP教程

时间:2021-07-01 10:21:17 帮助过:27人阅读

读取数据记录的分页代码
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))
{
?>




www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631752.htmlTechArticle读取数据记录的分页代码 ?php if(!$whichpage) { $notepage=1; } else { $notepage=$whichpage; } $noterecs=0; $pagesize=10; $bbsconn=mysql_connect("localhost","root"); mysql_s...

人气教程排行

编号 用户名 发表人 文章标题 发表时间