php jquery ページネーション
は常に最初のページを表示します
phpPage.php コード
require_once( ' ../appCom/com.php');
//PHP ページングの例
//ページ サイズ
$page_size=3;
//合計の計算行数
$total_records=GetArchivesSum();
//総ページ数
$total_page=ceil($total_records/$page_size);
$ query= "select * from dede_archives order by id asc limit 0,$page_size";
$dsql->Execute('me',$query);
$html='';
? >
while ($row=$dsql->GetArray())
{
?>
- =$row["title"]?>
}
? >
本文>