ホームページ >php教程 >php手册 >PHP でのページングの例

PHP でのページングの例

WBOY
WBOYオリジナル
2016-06-13 12:42:11921ブラウズ

if(!$thatpage)
{
$notepage=1;
}
else
{
$notepage=$thatpage;
}
$noterecs=0;
$pagesize=10;
$bbsconn=mysql_connect("localhost","root");
mysql_select_db("雨風",$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;
}
?>
编号 用户名 発行表人 文章标题 公開時間中
< ;/td>
< ;/td>
< ;/td>
" target="disp"> < ;/td>









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

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