| Server IP : 104.21.80.248 / Your IP : 162.159.115.41 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');
$CLASS['db'] = new db();
$CLASS['db']->connect();
$CLASS['disp'] = new display();
$db = $CLASS['db'];
$disp = $CLASS['disp'];
$tb_performance_id = $_REQUEST['tb_performance_id'];
$tb_performance_group_id = $_REQUEST['tb_performance_group_id'];
$tb_performance_detail_id = $_REQUEST['tb_performance_detail_id'];
//--------------------ส่วนบนใช้สำหรับประกาศตัวแปรและ Config เท่านั้น----------------------------//
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ผลการเลือกแบบประเมินตนเองในด้าน<?php print $disp->display_performancedetailname($tb_performance_detail_id);?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
<!--
.style1 {
font-size: 18px;
font-weight: bold;
}
.style3 {font-size: 20px}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td align="center" nowrap></td>
</tr>
<tr>
<td align="center" nowrap><span class="style1"><span class="style3">ผลการเลือกแบบประเมินตนเอง</span><br>
<?php print $disp->display_performancename($tb_performance_id);?> > <?php print $disp->display_performancegroupname($tb_performance_group_id);?> > <?php print $disp->display_performancedetailname($tb_performance_detail_id);?></span><br />
<strong>ของครูโรงเรียนแกลง"วิทยสถาวร" อำเภอแกลง จังหวัดระยอง </strong></td>
</tr>
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center"><table width="80%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#666666">
<tr>
<td width="12%" align="center" nowrap bgcolor="#999999" class="headTable_mpt"><strong>ลำดับที่</strong></td>
<td width="69%" nowrap bgcolor="#999999" class="headTable_mpt"><strong>ชื่อ - นามสกุล </strong></td>
<td width="19%" align="center" nowrap bgcolor="#999999" class="headTable_mpt"><strong>หมายเหตุ</strong></td>
</tr>
<?php
$sql_all="select * from tb_user_develops where tb_performance_detail_id ='".$tb_performance_detail_id."' order by tb_user_develop_id asc";
$queryall = $db->query($sql_all);
$numrows = $db->num_rows($queryall);
if($numrows >0){
$i=1;
while($fetch_dis = $db->fetch_array($queryall)){
?>
<tr>
<td align="center" bgcolor="#FFFFFF"><?php print $i+$goto;?>.</td>
<td bgcolor="#FFFFFF"><?php print $disp->display_teachername($fetch_dis['tb_teacher_id']);?></td>
<td align="center" bgcolor="#FFFFFF"> </td>
</tr>
<?php
$i++;
}
}else{
?>
<tr>
<td colspan="3" align="center" bgcolor="#FFFFFF" class="alertred">ไม่พบข้อมูล</td>
</tr>
<?php
}
?>
</table></td>
</tr>
</table>
</body>
</html>