复制發 ページングクラスの使用法:
-
-
- include_once("fenye_php.php") //クラスを紹介します
- ///////// //////////////////////////////////////////////// /// ////////////
- $con = mysql_connect("localhost","root","");
- if (!$con)
- {
- die('接続できませんでした: ' . mysql_error ());
- }
mysql_select_db("myblog", $con);//データベースを選択します
-
- $PAGE_SIZE=10;//各ページに表示される番号を設定します
- //// /////////////////////////////////////////// //////// //////////////////
- $pageSupport = new PageSupport($PAGE_SIZE) //PageSupport オブジェクトをインスタンス化します
- $current_page=$_GET[" current_page"];//現在のページのページ数
- if (isset($current_page)) {
- $pageSupport->__set("current_page",$current_page);
- } else {
- $pageSupport->__set(" current_page",1);
- }
-
- $pageSupport->__set("sql","記事から * を選択 ");
- $pageSupport->read_data();//データを読み取る
-
- if ($pageSupport- >current_records > 0) // データが空でない場合は、データをアセンブルします
- {
- for ($i<$pageSupport->current_records; $i++)
- {
- $title = $pageSupport ->結果[$i]["タイトル"];
- $content = $pageSupport->結果[$i]["コンテンツ"];
-
- $part=substr($content,0,400);各データをループして出力します
- echo '
'.$title.' ">'.$part.' div>
- '
- }
- }
- $pageSupport->standard_navigate(); //ページング HTML を表示します。データベース
- mysql_close($con);
-
-
-
- ;
-
-
-
-
|