| Server IP : 104.21.80.248 / 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 : |
<?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');
include ($path.'include/permission_denied.php');
$CLASS['db'] = new db();
$CLASS['db']->connect();
$CLASS['disp'] = new display();
$db = $CLASS['db'];
$disp = $CLASS['disp'];
$date_insert = date('Y-m-d');
$time_insert = date('H:i:s');
$link_value = $_REQUEST['link_value'];
//----------------------------ค่าพื้นฐานระบบเว็บไซต์-----------------------------//
$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>
<link href="css/style_admin.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {font-size: 24px}
.style3 {font-size: 16}
.style2 {color: #FF0000}
-->
</style>
</head>
<BODY>
<TABLE width=100% height="100%" border=0 cellPadding=0 cellSpacing=0>
<tbODY>
<TR>
<TD width=100% height=100 align="left" vAlign=top ><?php include('header_admin.php'); ?></TD>
</TR>
<TR height="100%" >
<TD width="100%" height="100%" vAlign=top>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 >
<tbODY>
<TR>
<TD width=200 rowSpan=2 vAlign=top id=nav><?php include('left_nav.php'); ?></TD>
<TD width=3 height=1 bgcolor="#f1f1f1"><img src="images/spacer.gif" width="3" height="1"></TD>
<TD width="100%" rowSpan=2 align="left" vAlign=top style="PADDING-LEFT: 3px; PADDING-RIGHT: 0px;">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="images/i_setup.gif" width="65" height="44" border="0"></td>
<td width="100%" height="24"> </td>
<td> </td>
</tr>
<tr>
<td align="left" width="100%"
background="images/bg_part.gif"><B><font color="#000000">เข้าระบบโดย : <?php print $_SESSION['sessionadmin_name'];?> <?php print $_SESSION['sessionadmin_sername'];?></font></B></td>
<td><img src="images/end_part.gif" width="25" height="20"></td>
</tr>
</tbody>
</table>
</br>
<table width="99%" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<td><fieldset>
<legend class="bigone"><strong>รายชื่อผู้ยังไม่ลงเวลาปฏิบัติงาน</strong></legend>
<table width="99%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#FF0000">
<tr>
<td width="9%" height="20" nowrap="nowrap" bgcolor="#FFFFFF" class="headTable_mpt"><div align="center">ลำดับที่</div></td>
<td width="19%" nowrap="nowrap" bgcolor="#FFFFFF" class="headTable_mpt"><div align="center">เลขประจำตำแหน่ง</div></td>
<td width="30%" nowrap="nowrap" bgcolor="#FFFFFF" class="headTable_mpt"><div align="center">ชื่อ - สกุล </div></td>
<td width="26%" nowrap="nowrap" bgcolor="#FFFFFF" class="headTable_mpt"><div align="center">กลุ่มสาระการเรียนรู้</div></td>
<td width="16%" nowrap="nowrap" bgcolor="#FFFFFF" class="headTable_mpt"><div align="center">หมายเหตุ</div></td>
</tr>
<?php
$sql_display = $db->query("SELECT
tb_teachers.tb_teacher_id,
tb_teachers.tb_teacher_name,
tb_teachers.tb_teacher_number,
tb_teachers.tb_department_id
FROM
tb_teachers order by tb_teachers.tb_department_id asc ");
$num_display = $db->num_rows($sql_display);
if($num_display > "0"){
$i=1;
while($fetch_displayw = $db->fetch_array($sql_display)){
$query_chk = $db->query("select count(tb_teacher_number) as num_group from tb_timeteachers where tb_teacher_number ='".$fetch_displayw['tb_teacher_number']."' and tb_timeteacher_date='".$date_insert."' ");
$fetch_chk = $db->fetch_array($query_chk);
if($fetch_chk['num_group']=="0"){
?>
<tr>
<td height="20" align="center" nowrap="nowrap" bgcolor="#FFFFFF"><?php print $i;?>.</td>
<td align="center" nowrap="nowrap" bgcolor="#FFFFFF"><?php print $fetch_displayw['tb_teacher_number'];?></td>
<td nowrap="nowrap" bgcolor="#FFFFFF"><?php print $disp->display_teachertimename($fetch_displayw['tb_teacher_number'])?></td>
<td align="center" nowrap="nowrap" bgcolor="#FFFFFF"><?php print $disp->display_departmentname($fetch_displayw['tb_department_id']);?></td>
<td align="center" nowrap="nowrap" bgcolor="#FFFFFF"> </td>
</tr>
<?php
$i++;
}
} }else{ ?>
<tr>
<td colspan="5" align="center" bgcolor="#FFFFFF"><span class="style2">ยังไม่มีข้อมูล</span></td>
</tr>
<?php } ?>
</table>
</fieldset>
</td>
</tr>
</table></TD>
</TR>
<TR>
<TD height=100% vAlign=top background="images/vline.gif">
<IMG src="images/h1_.gif" width="8" height="100" id=ctrlMnu style="CURSOR: hand" onClick="ShowHidePanel('nav', 'ctrlMnu')" onMouseOver="this.style.filter='alpha(opacity=65);'" onMouseOut="this.style.filter='alpha(opacity=100);'"></TD>
</TR>
</tbODY>
</TABLE> </TD>
</TR>
<TR height="100%" >
<TD height="30" vAlign=bottom><?php include('footer.php'); ?></TD>
</TR>
</tbODY>
</TABLE>
</BODY>
</html>