标签:style blog class code c ext
1、css样式
1 |
.fpage{ text-align : center ; clear : both ; padding-top : 10px ;} |
2 |
.fpage a{ font-size : 14px ; border : 1px solid #ccc ; padding : 3px ;box-shadow: 0px 0px 3px #bbb ;} |
3 |
.fpage span.current{ font-size : 14px ; border : 1px solid #ccc ; padding : 3px 11px ;box-shadow: 0px 0px 3px #bbb ; background : #369 ; color : #fff ;} |
4 |
.fpage span.current 2 { font-size : 14px ; border : 1px solid #ccc ; padding : 3px 11px ;box-shadow: 0px 0px 3px #bbb ; background : #FFFFFF ; color : #979090 ;} |
2、模板
1 |
< div class = "fpage" ><? php echo $fpage;?></ div > |
3、php程序中
1 |
$pagesize = 12; |
2 |
$page = ! empty ( $page )? intval ( $page ):1; |
3 |
$p = new Page(200, $pagesize , $page ); |
4 |
$sql2 = "SELECT * from #@__yaoping limit $p->firstRow,$p->listRows" ; |
5 |
$list = get_select( $sql2 , $this ->dsql); |
6 |
$p ->setConfig( ‘theme‘ , ‘<span class="current2">%totalRow% %header% %nowPage%/%totalPage% 页</span> %upPage% %first% %linkPage% %end% %nextPage% %prePage% %downPage%‘ ); |
7 |
$fpage = $p ->show(); |
给thinkphp加个分页样式,布布扣,bubuko.com
标签:style blog class code c ext
原文地址:http://www.cnblogs.com/xiaofeng028/p/3731732.html