| Server IP : 172.67.187.206 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/myschool/boploi/modules/tkk9/ |
Upload File : |
<?
CheckUser($_SESSION['user_user'], $_SESSION['user_pwd']);
?>
<?
class Paginator{
var $items_per_page;
var $items_total;
var $current_page;
var $num_pages;
var $mid_range;
var $low;
var $high;
var $limit;
var $return;
var $default_ipp;
var $querystring;
var $url_next;
function Paginator()
{
$this->current_page = 1;
$this->mid_range = 7;
$this->items_per_page = $this->default_ipp;
$this->url_next = $this->url_next;
}
function paginate()
{
if(!is_numeric($this->items_per_page) OR $this->items_per_page <= 0) $this->items_per_page = $this->default_ipp;
$this->num_pages = ceil($this->items_total/$this->items_per_page);
if($this->current_page < 1 Or !is_numeric($this->current_page)) $this->current_page = 1;
if($this->current_page > $this->num_pages) $this->current_page = $this->num_pages;
$prev_page = $this->current_page-1;
$next_page = $this->current_page+1;
if($this->num_pages > 10)
{
$this->return = ($this->current_page != 1 And $this->items_total >= 10) ? "<a class=\"paginate\" href=\"".$this->url_next.$this->$prev_page."\">« ย้อนกลับ</a> ":"<span class=\"inactive\" href=\"#\">« ย้อนกลับ</span> ";
$this->start_range = $this->current_page - floor($this->mid_range/2);
$this->end_range = $this->current_page + floor($this->mid_range/2);
if($this->start_range <= 0)
{
$this->end_range += abs($this->start_range)+1;
$this->start_range = 1;
}
if($this->end_range > $this->num_pages)
{
$this->start_range -= $this->end_range-$this->num_pages;
$this->end_range = $this->num_pages;
}
$this->range = range($this->start_range,$this->end_range);
for($i=1;$i<=$this->num_pages;$i++)
{
if($this->range[0] > 2 And $i == $this->range[0]) $this->return .= " ... ";
if($i==1 Or $i==$this->num_pages Or in_array($i,$this->range))
{
$this->return .= ($i == $this->current_page And $_GET['Page'] != '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> ";
}
if($this->range[$this->mid_range-1] < $this->num_pages-1 And $i == $this->range[$this->mid_range-1]) $this->return .= " ... ";
}
$this->return .= (($this->current_page != $this->num_pages And $this->items_total >= 10) And ($_GET['Page'] != 'All')) ? "<a class=\"paginate\" href=\"".$this->url_next.$next_page."\">ถัดไป »</a>\n":"<span class=\"inactive\" href=\"#\">» ถัดไป</span>\n";
}
else
{
for($i=1;$i<=$this->num_pages;$i++)
{
$this->return .= ($i == $this->current_page) ? "<a class=\"current\" href=\"#\">$i</a> ":"<a class=\"paginate\" href=\"".$this->url_next.$i."\">$i</a> ";
}
}
$this->low = ($this->current_page-1) * $this->items_per_page;
$this->high = ($_GET['ipp'] == 'All') ? $this->items_total:($this->current_page * $this->items_per_page)-1;
$this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
}
function display_pages()
{
return $this->return;
}
}
?>
<html>
<head>
</head>
<style type="text/css"></style>
<body>
<br>
<table width=100% height=400 border="0" align="right" cellpadding="0" cellspacing="0">
<tr class="unnamed1">
<td Valign="top">
<form name="form3" method="post" action="?name=tkk9&file=tabainbook">
<table width=100% border="0" align="right" cellpadding="0" cellspacing="0">
<tr class="unnamed1">
<td width="70%" align="right" class="unnamed2">
<img src="images/admin/search.jpg" alt="s" width="19" height="18">
</td>
<td width="15%" class="unnamed2">
<div align="right">
<strong>ระบุคำที่ต้องการค้นหา</strong>
</div>
</td>
<td width="10%" align="right" >
<label>
</label>
<input name="search" type="text" id="search" value="<?=$_GET["search"];?>">
</td>
<td width="5%">
<div align="right">
<input type="submit" name="Submit2" value="ค้นหา">
</div></td>
</tr>
</table>
</form>
<br><br>
<div align=center><font color=red>ทะเบียนหนังสือเวียน</font></div>
<?
$strSQL = "SELECT * FROM ".TB_TKK9." where id like '%$search%' or topic like '%$search%' or posted like '%$search%' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 6; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" ORDER BY id desc LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="2" bordercolor="#999999" bordercolordark="#FFFFFF">
<tr bgcolor="#009900">
<td width="5%" class="unnamed2"><font color="#FFFFFF"><div align="center" class="style3">ที่</div></font></td>
<td width="50%" class="unnamed2"><font color="#FFFFFF"><div align="center" class="style3">เรื่อง</div></font></td>
<td width="15%" class="unnamed2"><font color="#FFFFFF"><div align="center" class="style3">วัน เดือน ปี</div></font></td>
<td width="20%" class="unnamed2"><font color="#FFFFFF"><div align="center" class="style3">จาก</div></font></td>
<td width="10%" class="unnamed2"><font color="#FFFFFF"><div align="center" class="style3">ตรวจสอบการรับ</div></font></td>
</tr>
<?
$i=1;
while($objResult = mysql_fetch_array($objQuery))
{
if ($i%2==0)
{
?><tr bgcolor="#FFFFC6" class="unnamed1"><?
} else {
?><tr bgcolor="ffffff" class="unnamed1"><?
} ?>
<td class="unnamed2"><div align="center"><? echo"$objResult[id]"; ?></div></td>
<td class="unnamed2"><div align="left"><? echo"$objResult[topic]"; ?> </div></td>
<td class="unnamed2"><div align="left"> <?echo ThaiTimeConvert("$objResult[post_date]",'','2');?></div></td>
<td class="unnamed2"><div align="left"> <? echo"$objResult[posted]"; ?></div></td>
<td class="unnamed2"><div align="left"> <A HREF="popup.php?name=tkk9&file=readtkk9&id=<? echo"$objResult[id]"; ?> " onclick="return hs.htmlExpand(this, { contentId: 'highslide-html', objectType: 'iframe', objectWidth: 1024, objectHeight: 760} )" class="highslide"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif">บุคคลที่รับแล้ว</A></div></td>
</tr>
<?
$i++;
}
?>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="1" width="100%" align=center>
<tr>
<td align=right>
มีข้อมูล จำนวน <b><?= $Num_Rows;?></b> รายการ
<?
$pages = new Paginator;
$pages->items_total = $Num_Rows;
$pages->mid_range = 10;
$pages->current_page = $Page;
$pages->default_ipp = $Per_Page;
$pages->url_next = $_SERVER["PHP_SELF"]."?name=tkk9&file=tabainbook&search=$search&QueryString=value&Page=";
$pages->paginate();
echo $pages->display_pages()
?>
</TD>
</TR>
</TABLE>
<?
mysql_close();
?>
</body>
</html>