PHP mysql 데이터베이스 쿼리 페이징 코드 예제
풀어 주다: 2016-07-25 08:52:14
-
-
/* - * php mysql分页代码
- *
- */
$SQL_TABL="abc"; //表名
- $where_name="id > 10";//查询条件
- $perpagenum = 3; //每页显示数量
$total = mysql_fetch_array(mysql_query("select count(*) AS count from $SQL_TABL WHERE (".@$where_name.")"));
- $sql_count=$total['count']; //获取返回的数据条数
- unset($total); //注销变量 $total
//计算出不准确的页面数$page_all_num_f为整数,$page_all_num_t为准确值(可能为小数)
- $page_all_num_f=round($page_all_num_t=$sql_count/$perpagenum,0);
- if($page_all_num_f<$page_all_num_t) //计算出正确的页面数
- $page_all_num=$page_all_num_f 1;
- else
- $page_all_num=$page_all_num_f;
if(is_numeric(@$_GET['p']) && @$_GET['p']>1 && @$_GET['p']<=$page_all_num) //获取GET参数判断当前页面
- $page_num=$_GET['p'];
- else
- $page_num=1;
$sql_s_num=($page_num-1)*$perpagenum; //计算开始的数据条数
- $sql_p="LIMIT ".$sql_s_num." , ".$perpagenum; //生成数据库查询代码
- $result = mysql_query("select * from $SQL_TABL WHERE (".@$where_name.") ".$sql_p); //查询数据
while($row=mysql_fetch_array($result)){ //主循环
- //输出内容
- }
//分页按钮
- for($i=1;$i<=$page_all_num;$i )
- {
if(@$_GET[name]!=null) //页面的其他GET参数
- $p_n="name=".@$_GET[name]."&";
- else
- $p_n=null;
if($page_num==$i) //当前页面数字的强调
- $p_flag="class="flag" ";
- else
- $p_flag=null;
echo "$in";
- }
- ?>
-
复制代码
推荐阅读:
- php与ajax无刷新分页代码
- php 文章分页的实现代码
- php limit 翻页(分页)代码
- 带多种分页方式的php分页类
- 上一页与下一页的php分页代码
- 前十页、后十页方式的php分页代码
- 简单的php分页代码的例子
- 一个不错的php分页类的代码
- 一个分页函数:上一页 下一页
- 一个好用的php分页类
- php长文章分页代码
- 一个实用的php分页类
- 快速php分页类
|
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31