| 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/checktime/ |
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');
$CLASS['db'] = new db();
$CLASS['db']->connect();
$CLASS['disp'] = new display();
$db = $CLASS['db'];
$disp = $CLASS['disp'];
$date_day = date("Y-m-d");
$search_keyword = $_REQUEST['search_keyword'];
$type_search = $_REQUEST['type_search'];
$tb_student_degree = $_REQUEST['tb_student_degree'];
//----------------------------ค่าพื้นฐานระบบเว็บไซต์-----------------------------//
$fetch_public = $db->fetch_array($db->query("select * from tb_public"));
//----------------------------ค่าพื้นฐานระบบเว็บไซต์-----------------------------//
//--------------------ส่วนบนใช้สำหรับประกาศตัวแปรและ Config เท่านั้น----------------------------//
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php print $fetch_public['tb_public_title'];?></title>
<style type="text/css">
<!--
.style1 {
font-size: 24px;
color: #FF0000;
}
.style3 {font-size: 16}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #FFFFFF;
}
.style4 {color: #FF0000}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body onLoad="window.print()" bgcolor="#FFFFFF">
<p align="center"><span class="orange_text style1">ข้อมูลการมาเรียนของนักเรียน ประจำวันที่ <?php print display_date($date_day,"shortthai")?> </span></p>
<p align="center"><span class="orange_text style1 style4">
<?php if($type_search){?>
ระดับชั้น <?php print $disp->display_roomname($type_search); }?></span></p>
<form name="frmMain" action="function_checktime.php" method="post" OnSubmit="return onDelete();">
<table width="95%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#4D7C21">
<tr class="bigone">
<td width="15%" height="30" align="center" nowrap bgcolor="#66CC33" class="style3 headTable"><strong>ลำดับที่</strong></td>
<td width="22%" align="center" nowrap bgcolor="#66CC33" class="style3 headTable"><strong>รหัสประจำตัว</strong></td>
<td width="45%" align="center" nowrap bgcolor="#66CC33" class="style3 headTable"><strong>ชื่อ - นามสกุล </strong></td>
<td width="18%" align="center" nowrap bgcolor="#66CC33" class="style3 headTable"><strong>วันนี้</strong></td>
<td width="18%" align="center" nowrap bgcolor="#66CC33" class="style3 headTable"><span class="style3 headTable"><strong>เวลามาเรียน</strong></span></td>
</tr>
<?php
if($type_search){
$sql_search = " and tb_time_degree='".$type_search."' ";
}
$query_disall = $db->query("select * from tb_times where tb_time_date='".$date_day."' $sql_search order by tb_time_type desc , tb_time_time asc");
$numrow_disall = $db->num_rows($query_disall);
if($numrow_disall >0){
$i = 1;
while($fetch_disall = $db->fetch_array($query_disall)){
$fetch_disall_mem = $db->fetch_array($db->query("select * from tb_students where tb_student_code='".$fetch_disall['tb_time_stucode']."' order by tb_student_tname,tb_student_code,tb_student_degree asc"));
if($i%2=="1"){
$bg="rowone";
}else{
$bg="rowtwo";
}
?>
<tr bgcolor="#FFFFFF">
<td align="center" nowrap ><?php print $i;?>.</td>
<td align="center" nowrap ><?php print $fetch_disall['tb_time_stucode'];?></td>
<td nowrap ><?php print display_nametype($fetch_disall_mem['tb_student_tname']);?><?php print $fetch_disall_mem['tb_student_name'];?> <?php print $fetch_disall_mem['tb_student_sname'];?></td>
<td align="center" nowrap class="alertred" ><?php print display_timetype($fetch_disall['tb_time_type']);?></td>
<td align="center" nowrap class="alertred" ><?php print $fetch_disall['tb_time_time'];?></td>
</tr>
<?php
$i++;
}
}else{
?>
<tr class="alertred">
<td colspan="5" align="center" bgcolor="#FFFFFF">ยังไม่มีการบันทึกข้อมูลวันนี้</td>
</tr>
<?php
}
?>
</table>
<br>
</form>
</body>
</html>