コードをコピーします コードは次のとおりです:
header("content-type:text/html;charset=utf-8");
//データベース接続
$conn = mysql_connect(" localhost", "root", "111") または die("接続されていません : ".mysql_error());
mysql_select_db("test", $conn);
mysql_query("set names utf8");
//データの行数をクエリします
$sql1 = "select count(*) from user";
$ret1 = mysql_query($sql1);
$row1 = mysql_fetch_row($ret1);
$tot = $行1[0];
//ページあたりのデータ行数
$length = 5
//総ページ数
$totpage = ceil($tot / $length);
//現在のページ数
$page = @$_GET['p'] ? $_GET['p'] : 1;
//下限値
$offset = ($page - 1) * $length;
echo "
"; echo "
gt;php パディング
";
echo "";
echo " echo "ID | ";
echo "USER | ";
echo "PASS | ";
echo " /tr>";
//クエリされたデータをテーブルに表示します $sql2 = "select * from user order by id limit {$offset}, {$length}"; $ret2 = mysql_query($sql2); while ($row2 = mysql_fetch_assoc($ret2)) { echo " |
" にすることができます。 echo "{$row2['id']} } |
echo "
";
前のページと 前のページ ;
}
//ジャンプ
echo ""; echo "
";
コアポイント:
<1>"$sql2 = "select * from user order by id limit {$offset}, {$length}";"、$offset、$length とページ数の関係。
<2>前ページと次ページの取得方法と重要なポイント。
http://www.bkjia.com/PHPjc/825276.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/825276.html
技術記事
次のようにコードをコピーします: ?php header("content-type:text/html;charset=utf-8"); //データベース接続 $conn = mysql_connect("localhost", "root", "111") または die ( "接続されていません: ".mysql...