001.
<?php
002.
class
Paginator{
003.
var
$items_per_page
;
004.
var
$items_total
;
005.
var
$current_page
;
006.
var
$num_pages
;
007.
var
$mid_range
;
008.
var
$low
;
009.
var
$high
;
010.
var
$limit
;
011.
var
$return
;
012.
var
$default_ipp
;
013.
var
$querystring
;
014.
var
$url_next
;
015.
016.
function
Paginator()
017.
{
018.
$this
->current_page = 1;
019.
$this
->mid_range = 7;
020.
$this
->items_per_page =
$this
->default_ipp;
021.
$this
->url_next =
$this
->url_next;
022.
}
023.
function
paginate()
024.
{
025.
026.
if
(!
is_numeric
(
$this
->items_per_page) OR
$this
->items_per_page <= 0)
$this
->items_per_page =
$this
->default_ipp;
027.
$this
->num_pages =
ceil
(
$this
->items_total/
$this
->items_per_page);
028.
029.
if
(
$this
->current_page < 1 Or !
is_numeric
(
$this
->current_page))
$this
->current_page = 1;
030.
if
(
$this
->current_page >
$this
->num_pages)
$this
->current_page =
$this
->num_pages;
031.
$prev_page
=
$this
->current_page-1;
032.
$next_page
=
$this
->current_page+1;
033.
034.
035.
if
(
$this
->num_pages >
$this
->mid_range)
036.
{
037.
$this
->
return
= (
$this
->current_page != 1 And
$this
->items_total >=
$this
->mid_range)
?
"<a class=\"paginate\" href=\""
.
$this
->url_next.
$this
->
$prev_page
.
"\">« Previous</a> "
:
"<span class=\"inactive\" href=\"#\">« Previous</span> "
;
038.
039.
$this
->start_range =
$this
->current_page -
floor
(
$this
->mid_range/2);
040.
$this
->end_range =
$this
->current_page +
floor
(
$this
->mid_range/2);
041.
042.
if
(
$this
->start_range <= 0)
043.
{
044.
$this
->end_range +=
abs
(
$this
->start_range)+1;
045.
$this
->start_range = 1;
046.
}
047.
if
(
$this
->end_range >
$this
->num_pages)
048.
{
049.
$this
->start_range -=
$this
->end_range-
$this
->num_pages;
050.
$this
->end_range =
$this
->num_pages;
051.
}
052.
$this
->range = range(
$this
->start_range,
$this
->end_range);
053.
054.
for
(
$i
=1;
$i
<=
$this
->num_pages;
$i
++)
055.
{
056.
if
(
$this
->range[0] > 2 And
$i
==
$this
->range[0])
$this
->
return
.=
" ... "
;
057.
if
(
$i
==1 Or
$i
==
$this
->num_pages Or in_array(
$i
,
$this
->range))
058.
{
059.
$this
->
return
.= (
$i
==
$this
->current_page And
$_GET
[
'PagePR'
] !=
'All'
) ?
"<a title=\"Go to page $i of $this->num_pages\" class=\"current\" href=\"#\">$i</a> "
:
"<a class=\"paginate\" title=\"Go to page $i of $this->num_pages\" href=\""
.
$this
->url_next.
$i
.
"\">$i</a> "
;
060.
}
061.
if
(
$this
->range[
$this
->mid_range-1] <
$this
->num_pages-1 And
$i
==
$this
->range[
$this
->mid_range-1])
$this
->
return
.=
" ... "
;
062.
}
063.
$this
->
return
.= ((
$this
->current_page !=
$this
->num_pages And
$this
->items_total >=
$this
->mid_range)
And (
$_GET
[
'PagePR'
] !=
'All'
)) ?
"<a class=\"paginate\" href=\""
.
$this
->url_next.
$next_page
.
"\">Next »</a>\n"
:
"<span class=\"inactive\" href=\"#\">» Next</span>\n"
;
064.
}
065.
else
066.
{
067.
for
(
$i
=1;
$i
<=
$this
->num_pages;
$i
++)
068.
{
069.
$this
->
return
.= (
$i
==
$this
->current_page) ?
"<a class=\"current\" href=\"#\">$i</a> "
:
"<a class=\"paginate\" href=\""
.
$this
->url_next.
$i
.
"\">$i</a> "
;
070.
}
071.
}
072.
$this
->low = (
$this
->current_page-1) *
$this
->items_per_page;
073.
$this
->high = (
$_GET
[
'ipp'
] ==
'All'
) ?
$this
->items_total:(
$this
->current_page *
$this
->items_per_page)-1;
074.
$this
->limit = (
$_GET
[
'ipp'
] ==
'All'
) ?
""
:
" LIMIT $this->low,$this->items_per_page"
;
075.
}
076.
077.
function
display_pages()
078.
{
079.
return
$this
->
return
;
080.
}
081.
}
082.
?>
083.
<style type=
"text/css"
>
084.
<!--
085.
.paginate {
086.
font-family: Arial, Helvetica, sans-serif;
087.
font-size: .7em;
088.
}
089.
a.paginate {
090.
border: 1px solid #000080;
091.
padding: 2px 6px 2px 6px;
092.
text-decoration: none;
093.
color: #000080;
094.
}
095.
h2 {
096.
font-size: 12pt;
097.
color: #003366;
098.
}
099.
100.
h2 {
101.
line-height: 1.2em;
102.
letter-spacing:-1px;
103.
margin: 0;
104.
padding: 0;
105.
text-align: left;
106.
}
107.
a.paginate:hover {
108.
background-color: #FCF;
109.
color: #FFF;
110.
text-decoration: underline;
111.
}
112.
a.current {
113.
border: 1px solid #000080;
114.
font: bold .7em Arial,Helvetica,sans-serif;
115.
padding: 2px 6px 2px 6px;
116.
cursor:
default
;
117.
background:#FCF;
118.
color: #FFF;
119.
text-decoration: none;
120.
}
121.
span.inactive {
122.
border: 1px solid #999;
123.
font-family: Arial, Helvetica, sans-serif;
124.
font-size: .7em;
125.
padding: 2px 6px 2px 6px;
126.
color: #999;
127.
cursor:
default
;
128.
}
129.
-->
130.
</style>
131.
<html>
132.
<head>
133.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
134.
<title></title>
135.
</head>
136.
137.
<body>
138.
<?php
139.
include
(
"db_conn.inc.php"
);
140.
$strSQL
=
"SELECT * FROM tb_pr"
;
141.
$objQuery
= mysql_query(
$strSQL
)
or
die
(
"Error Query ["
.
$strSQL
.
"]"
);
142.
$Num_Rows
= mysql_num_rows(
$objQuery
);
143.
144.
$Per_Page
= 5;
145.
146.
$Page
= isset(
$_GET
[
'PagePR'
]) ?
$_GET
[
'PagePR'
] : 1;
147.
148.
$Prev_Page
=
$Page
-1;
149.
$Next_Page
=
$Page
+1;
150.
151.
$Page_Start
= ((
$Per_Page
*
$Page
)-
$Per_Page
);
152.
if
(
$Num_Rows
<=
$Per_Page
)
153.
{
154.
$Num_Pages
=1;
155.
}
156.
else
if
((
$Num_Rows
%
$Per_Page
)==0)
157.
{
158.
$Num_Pages
=(
$Num_Rows
/
$Per_Page
);
159.
}
160.
else
161.
{
162.
$Num_Pages
=(
$Num_Rows
/
$Per_Page
)+1;
163.
$Num_Pages
= (int)
$Num_Pages
;
164.
}
165.
166.
$strSQL
.=
" ORDER BY id DESC LIMIT $Page_Start , $Per_Page"
;
167.
$objQuery
= mysql_query(
$strSQL
)
or
die
(
"Error Query ["
.
$strSQL
.
"]"
);
168.
?>
169.
<br />
170.
171.
<?php
172.
$news_item
=0;
173.
while
(
$objResult
= mysql_fetch_assoc(
$objQuery
))
174.
{
175.
$pr_send
=
$objResult
[
"id"
];
176.
?>
177.
<ul>
178.
<li>
179.
<a href=
"index2.php?page=detailPR&id_pr=<?=$pr_send;?>"
target=
"_blank"
><?=
$objResult
[
"Topic"
];?></a>
180.
<br>
181.
<?=
date
(
"d-m-Y H:i:s"
,
strtotime
(
$objResult
[
"Date_Post"
]));?>
182.
<?php
183.
$strSQL2
=
"SELECT * FROM tb_pr WHERE id= '$objResult[id]' "
;
184.
$objQuery2
= mysql_query(
$strSQL2
)
or
die
(mysql_error());
185.
$objResult2
= mysql_fetch_array(
$objQuery2
);
186.
187.
$strDateAdd
=
date
(
'Y-m-d'
,
strtotime
(
"-7 day"
));
188.
if
(
$objResult
[
"Date_Post"
]>=
$strDateAdd
)
189.
{
190.
echo
"<img src=\"img/new.gif\"> "
;
191.
}
192.
?>
193.
</li>
194.
</ul>
195.
<?php
196.
}
197.
?>
198.
<table width=
"550"
border=
"0"
cellspacing=
"0"
>
199.
<tr>
200.
<td width=
"562"
align=
"center"
class
=
"table"
>
201.
<?php
202.
$pages
=
new
Paginator;
203.
$pages
->items_total =
$Num_Rows
;
204.
$pages
->mid_range = 3;
205.
$pages
->current_page =
$Page
;
206.
$pages
->default_ipp =
$Per_Page
;
207.
$pages
->url_next =
$_SERVER
[
"PHP_SELF"
].
"?live=home&QueryString=value&PagePR="
;
208.
209.
$pages
->paginate();
210.
211.
echo
$pages
->display_pages();
212.
?>
213.
</td>
214.
</tr>
215.
</table>
216.
<?php
217.
mysql_close();
218.
?>
219.
</body>
220.
</html>