Viewing file: AllTeacherList.php (5.58 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include("../include/FunctionDB.php"); include("admin_menu.php"); include("../include/Function.php");
ConnectDB(); $sql = "Select * From personal_tb Where Teacher_type='1' Or Teacher_type='2' Or Teacher_type='6' Or Teacher_type='4' Or Teacher_type='5' Order By Teacher_id ASC "; $result = mysql_query($sql) or die(" Error").mysql_error(); $num = mysql_num_rows($result); ?>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<table width="753" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="753" ><br> <fieldset> <legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="index.php">หน้าหลัก</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle"><a href="menuEdu.php">ข้อมูลการฝ่ายวิชาการ</a> <img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle"> รายชื่อภาค/ฝ่าย</font></legend> <form id="form1" name="form1" method="post" action=""> <div align="center"></div> <table width="89%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#eeeeee" style="border:1px solid gray"> <tr bgcolor="#A6C7EE"> <td height="21" colspan="4"><div align="center"><strong><font size="4" face="Tahoma">รายการผู้สอน </font></strong><font color="#000000" size="4" face="Tahoma"><strong>ทั้งหมด </strong></font></div></td> </tr> <tr bordercolor="#0066CC" bgcolor="#CCE6FF"> <td width="42" style="border:1px solid gray"><div align="center"><font color="#000000" size="2" face="Tahoma">ลำดับ</font></div></td> <td width="341" bgcolor="#CCE6FF" style="border:1px solid gray"><div align="center"><font color="#000000" size="2" face="Tahoma">ชื่อ-นามสกุล</font></div></td> <td width="305" style="border:1px solid gray"><div align="center"><font color="#000000" size="2" face="Tahoma">ตำแหน่งทางราชการ</font></div></td> <td width="314" style="border:1px solid gray"><div align="center"><font color="#000000" size="2" face="Tahoma">ตำแหน่งทางการบริหาร</font></div></td> </tr> <? $i = 1; while($rs = mysql_fetch_array($result)) {
if($count==0) { ?> <tr bgcolor="#F9FEFF" onmouseover="this.style.backgroundColor='#FCFCF3'" onmouseout="this.style.backgroundColor='#F9FEFF'"> <td height="18" align="center" bordercolor="#EBFAFE"><strong><font color="#000000" size="2" face="Tahoma"> <? $no = ($Per_Page * ( $Page -1))+$i ; echo $no; ?> </font></strong></td> <td bordercolor="#EBFAFE"><font size="2" face="Tahoma"><a href="Tech_Edu_History.php?Teacher_code=<? echo $rs[Teacher_code]?>" class="d"><? echo $rs[First_name]?> <? echo $rs[Teacher_name]?> <?echo $rs[Teacher_lastname]?></a></font></td> <td bordercolor="#EBFAFE"><font size="2" face="Tahoma"><? echo $rs[Gover_pos]?></font></td> <td bordercolor="#EBFAFE" ><font size="2" face="Tahoma"><? echo $rs[Manage_pos]?></font></td> </tr> <? $count=1; } else { ?> <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF" onmouseover="this.style.backgroundColor='#FCFCF3'" onmouseout="this.style.backgroundColor='#FFFFFF'" > <td align="center"><strong><font color="#000000" size="2" face="Tahoma"> <? $no = ($Per_Page * ( $Page -1))+$i ; echo $no; ?> </font></strong></td> <td><font size="2" face="Tahoma"><a href="Tech_Edu_History.php?Teacher_code=<? echo $rs[Teacher_code]?>" class="d"><?echo $rs[First_name]?> <?echo $rs[Teacher_name]?> <?echo $rs[Teacher_lastname]?></a></font></td> <td><font size="2" face="Tahoma"><?echo $rs[Gover_pos]?></font></td> <td ><font size="2" face="Tahoma"><?echo $rs[Manage_pos]?></font></td> </tr> <? $count=0; } $i++; } ?> <tr bgcolor="#CCE6FF"> <td colspan="4" align="center"><div align="center"><strong><font color="#003366" size="2" face="Tahoma">ทั้งหมด</font><font color="#FF0000" size="2" face="Geneva, Arial, Helvetica, sans-serif"> <? echo $num ?><font color="#003399" face="Tahoma"> คน </font> </font></strong></div></td> </tr> </table> <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="right" class="Tahoma11"><div align="center"><font color="#FFFFFF"> <font color="#FFFFFF" size="3" face="MS Sans Serif"><strong> <font color="#0033CC" size="2" face="Tahoma"> <?php echo $Num_Pages;?></font></strong></font><font color="#0033CC" size="2" face="Tahoma"><strong> <font color="#003366">หน้า</font></strong></font> <font color="#0033CC" size="2" face="Tahoma"><strong> <?php if ($Pre_Page) echo"<a href=\"$PHP_SELF?Page=$Pre_Page\" class=\"PageLink\"><font =\"Ms San serif\" size=\"2\"><b><< Previus</b> </font></a>";
for($i=1;$i<=$Num_Pages;$i++) { if($i != $Page) echo" [<a href=\"$PHP_SELF?Page=$i\" class=\"PageLink\"><font =\"Ms San serif\" size=\"2\"><b>$i</b></font></a>] "; else echo"<b>$i</b>"; } if($Page != $Num_Pages) echo"<a href=\"$PHP_SELF?Page=$Next_Page\" class=\"PageLink\"><font =\"Ms San serif\" size=\"2\"><b> Next >></b> </font></a>"; ?> </strong></font> </font> </div></td> </tr> </table> </form> </fieldset> <br> <font color="<?php echo $GLOBALS["COLOR_FONT_3"];?>" size="2"><b>หมายเหตุ :</b> ใช้เมาส์คลิกที่ชื่อ<br> </font></td> </tr> </table>
|