403Webshell
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 :  /Inetpub/www/myschool/triamudom/check/webadmin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Inetpub/www/myschool/triamudom/check/webadmin//display_report_actprint.php
<?php
session_start();
$path = "../";
include ($path.'include/config_db.php');
include ($path.'include/class_db.php'); 
include ($path.'include/class_display.php'); 
include ($path.'include/function.php'); 

$CLASS['db']   = new db();
$CLASS['db']->connect(); 
$CLASS['disp']   = new display();
$db   = $CLASS['db']; 
$disp   = $CLASS['disp']; 

//----------------------------ค่าพื้นฐานระบบเว็บไซต์-----------------------------//
$fetch_public = $db->fetch_array($db->query("select * from tb_public"));
//----------------------------ค่าพื้นฐานระบบเว็บไซต์-----------------------------//

//--------------------ส่วนบนใช้สำหรับประกาศตัวแปรและ Config เท่านั้น----------------------------//
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php print $fetch_public['tb_public_title_admin'];?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<SCRIPT type="text/javascript"  src="js/format.js"></SCRIPT>
<SCRIPT type="text/javascript"  src="js/global.js" ></SCRIPT>
<SCRIPT type="text/javascript"  src="js/dtree.js"  ></SCRIPT>
<script language="JavaScript"  type="text/javascript"  src="../js/editor.js"></script>
<link href="css/style_admin.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="ckfinder/ckfinder.js"></script>
<script language="javascript">
	function chknull(c){
		if(c.tb_act_id.value==''){
			alert('กรุณาเลือก ูข้อมูลรายชุมนุม');
			c.tb_act_id.focus();
			return false;
		}
	}
</script>

</head>
<BODY>
<table width="99%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#666666" class="km_bgtable">
  <tr>
    <td height="30" colspan="7" valign="middle" bgcolor="#FFFFFF" class="b-texthead"><table width="100%" border="0" cellspacing="0" cellpadding="3">
      <form id="form1" name="form1" method="post" action="<?php $_SERVER['PHP_SELF'];?>">
        <input name="keyword" type="hidden" value="<?php print $keyword;?>" />
        <tr>
          <td nowrap="nowrap">&nbsp;</td>
          <td align="right" nowrap="nowrap">ค้นหาข้อมูล <span class="headtopic"> :
            <input name="keyword2" type="text" class="textbox" id="keyword" value="<?php print $keyword;?>" />
            </span>
                <input name="send" type="submit" class="textbox"  id="send" style="cursor:hand" value="ค้นหา" />
            &nbsp;</td>
        </tr>
      </form>
    </table></td>
  </tr>
  <tr>
    <td width="6%" height="30" rowspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">ลำดับที่</td>
    <td width="10%" rowspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">รหัสชุมนุม</td>
    <td width="27%" rowspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">ชื่อชุมนุม</td>
    <td width="25%" rowspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">ครูที่ปรึกษาชุมนุม</td>
    <td width="14%" colspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">จำนวนสมาชิก</td>
    <td width="9%" rowspan="2" align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">พิมพ์ข้อมูล</td>
  </tr>
  <tr>
    <td align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">ที่รับ</td>
    <td align="center" valign="middle" nowrap="nowrap" bgcolor="#A2A2A2" class="headTable_mpt">ที่สมัคร</td>
  </tr>
  <?php
										  $page_size = 200;
										  if ($PAGE =="" || $PAGE =="0" ) { 
											 $PAGE=1; 
										  }
										$goto = ($PAGE-1)*$page_size;	
										$limit = "limit  $goto , $page_size";
										if($keyword){
											$sql_search =" where tb_act_name like '%".$keyword."%' ";
										}
										$sql =  "select * from tb_acts $sql_search order  by tb_act_id asc ".$limit;				  
										$sql_all="select * from tb_acts  $sql_search order by tb_act_id asc";
										$query_dis = $db->query($sql);
										$queryall = $db->query($sql_all);
										$numrows = $db->num_rows($queryall);
										if($numrows >0){
											$i=1;
											while($fetch_dis = $db->fetch_array($query_dis)){
														if($i%2=="1"){
															$bg="rowone";
														}else{
															$bg="rowtwo";
														}
										?>
  <tr class="<?php echo $bg;?>">
    <td height="25" align="center" valign="top" nowrap="nowrap"><?php print $i+$goto;?>.</td>
    <td align="center" valign="top" nowrap="nowrap"><?php print $fetch_dis['tb_act_code'];?></td>
    <td height="25" align="left" valign="top" nowrap="nowrap"><?php print $fetch_dis['tb_act_name'];?></td>
    <td align="center" valign="top"><?php print $disp->display_teachername($fetch_dis['tb_teacher_id']);?></td>
    <td align="center" valign="top" nowrap="nowrap"><?php print $fetch_dis['tb_act_num'];?> คน </td>
    <td align="center" valign="top" nowrap="nowrap"><?php $fetch_num_regis = $db->fetch_array($db->query("SELECT COUNT(tb_act_id) AS num_regis FROM tb_registers WHERE tb_act_id ='".$fetch_dis['tb_act_id']."'")); print $fetch_num_regis['num_regis'];?>
      คน </td>
    <td align="center" valign="top" nowrap="nowrap"><a href="report_act_print.php?tb_act_id=<?php print $fetch_dis['tb_act_id'];?>" target="_blank"><img src="images/120px-Icon-printer.gif" width="24" height="24" border="0" align="absmiddle" /></a></td>
  </tr>
  <?php
											$i++;
											}
										?>
  <tr>
    <td height="25" colspan="7" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="3">
      <tr>
        <td width="50%">หน้า : <?php print $disp->ctrl_page_design_limit_show($sql_all ,10,$page_size,"red","blue","/",$link_value);?></td>
        <td width="50%" align="right" nowrap="nowrap">จำนวน <?php print $numrows;?> รายการ</td>
      </tr>
    </table></td>
  </tr>
  <?php
											}else{
										?>
  <tr>
    <td height="25" colspan="7" bgcolor="#FFFFFF"><div align="center" class="red_text"><strong>ไม่พบข้อมูล</strong></div></td>
  </tr>
  <?php 
												}
										  ?>
</table>
</BODY>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit