Viewing file: AdviceStudentList.php (13.9 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php session_start(); if (session_is_registered("valid_user")&&session_is_registered("password")&&session_is_registered("Priority")) { include("../../include/FunctionDB.php"); include("../../include/Function.php"); ConnectDB(); $strSQL = "SELECT * FROM student_tb Where Teacher_code='$Teacher_code' Order By Student_id Asc"; if (! $Page) $Page = 1; $Pre_Page = $Page - 1; $Next_Page = $Page +1; $Per_Page = 50; $result = mysql_query($strSQL);
$Page_start = ($Per_Page*$Page) - $Per_Page; $Num_Rows = mysql_num_rows($result);
if( $Num_Rows <= $Per_Page) $Num_Pages = 1; else if (($Num_Rows % $Per_Page) == 0) $Num_Pages = ($Num_Rows / $Per_Page); else $Num_Pages = ($Num_Rows / $Per_Page) + 1; $Num_Pages = (int)$Num_Pages;
if (( $Page > $Num_Pages) || ($Page < 0)) echo"Page $Page More than $Num_Pages"; $strSQL .=" LIMIT $Page_start,$Per_Page" ; $result = mysql_query($strSQL); /////////////////////////////////////////////////////////////////////////////////// $num = mysql_num_rows( $result ); //$count = 0;
?> <html> <head> <title>Student List</title> <link rel="stylesheet" href="../../css/style1.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head> <body bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr bgcolor="#FFFFFF"> <td><table width="100%" border="0" align="center" cellpadding="0" cellspacing="1"> <tr> <td width="20%" background="../../Image/barad.jpg" class="table"> <div align="center"><font size="2" face="Tahoma"><strong><a href="../Menu_Std_Acc.php" class="d">กลับเมนูหลัก</a></strong></font></div></td> <td width="20%" background="../../Image/barad.jpg" class="table"> <div align="center"><strong><font size="2" face="Tahoma"><a href="TeacherList.php" class="d">รายการอาจารย์ที่ปรึกษา</a></font></strong></div></td> <td width="20%" background="../../Image/barad.jpg" class="table"> <div align="center" ><strong><font size="2" face="Tahoma"><a href="../../logout.php" class="d">Logout</a></font></strong></div></td> </tr> </table></td> </tr> </table> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1"> <tr> <td bgcolor="#FFFFFF"> </td> </tr> </table> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" style="border:1px solid gray"> <tr bgcolor="#B8ECB3" > <td colspan="5"> <div align="center"><font color="#003366" size="4" face="Tahoma"><strong>ข้อมูลนักศึกษาที่รับผิดชอบแสดงประเภทปัญหา</strong></font></div></td> </tr> <tr bgcolor="#EEEEEE"> <td width="41" rowspan="2" align="center" style="border:1px solid gray"><font color="#003366" size="2" face="Tahoma"> <font size="1"><strong>ลำดับ</strong></font></font></td> <td width="106" rowspan="2" align="center" bgcolor="#EEEEEE" style="border:1px solid gray"><strong><font color="#003366" size="2" face="Tahoma">หลักสูตร</font></strong></td> <td width="97" rowspan="2" align="center" bgcolor="#EEEEEE" style="border:1px solid gray"><font color="#003366" size="2" face="Tahoma"><strong>รหัสนักศึกษา</strong></font></td> <td width="257" rowspan="2" align="center" bgcolor="#EEEEEE" style="border:1px solid gray"><font color="#003366" size="2" face="Tahoma"><b>ชื่อ-นามสกุล</b></font></td> <td height="18" align="center" bgcolor="#EEEEEE" style="border:1px solid gray"><font color="#003366" size="2" face="Tahoma"><strong>ประเภทปํญหา</strong></font></td> </tr> <tr bgcolor="#EEEEEE"> <td height="18" align="center" bgcolor="#EEEEEE" style="border:1px solid gray"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="25%"><div align="center"><font color="#003366" size="2" face="Tahoma">การเรียน</font></div></td> <td width="25%"><div align="center"><font color="#003366" size="2" face="Tahoma">เศรษฐกิจ</font></div></td> <td width="25%"><div align="center"><font color="#003366" size="2" face="Tahoma">สุขภาพ</font></div></td> <td width="25%"><div align="center"><font color="#003366" size="2" face="Tahoma">ส่วนตัว</font></div></td> </tr> </table></td> </tr> <? $i = 1; while($row = mysql_fetch_array($result)) {
if($count==0) { ?> <tr bordercolor="#EEEEEE" bgcolor="#FCF8EB" onMouseOver="this.style.backgroundColor='#FFFFFF'" onMouseOut="this.style.backgroundColor='#FCF8EB'"> <td align=center ><font color="#003366" size="2" face="Tahoma"> <?=$i?> </font></td> <td align=center ><font color="#000000" size="2" face="Tahoma"> <?php $Course_code = $row[Course_code]; $sql2= "Select * From course_tb Where Course_code='$Course_code'"; $result2 = mysql_query($sql2) or die("Error Select".mysql_query()); $rs2 = mysql_fetch_array($result2); echo"$rs2[Short_Thai]"; ?> </font></td> <td align=center ><font color="#003333" size="2" face="Tahoma"> <?=$row["Student_id"]?> </font></td> <td align="center" > <div align="left"><font color="#990099" size="2" face="Tahoma"> <a href="StdProbDetail.php?Student_id=<?=$row["Student_id"]?>" title="Click to see Detail" class="d"> <?=$row["First_name"]?> <?=$row["Name"]?> <?=$row["Lastname"]?> </a> </font></div> </td> <td > <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob1='การเรียน' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob2='เศรษฐกิจ' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob3='สุขภาพ' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob4='ส่วนตัว' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> </tr> </table> </div></td> </tr> <? $count=1; } else { ?> <tr bordercolor="#EEEEEE" bgcolor="#FFFEF4" onMouseOver="this.style.backgroundColor='#FFFFFF'" onMouseOut="this.style.backgroundColor='#FFFEF4'" > <td align="center" ><font color="#003366" size="2" face="Tahoma"> <?=$i?> </font></td> <td align="center" ><font color="#000000" size="2" face="Tahoma"> <?php $Course_code = $row["Course_code"]; $sql2= "Select * From course_tb Where Course_code='$Course_code'"; $result2 = mysql_query($sql2) or die("Error Select".mysql_query()); $rs2 = mysql_fetch_array($result2); echo"$rs2[Short_Thai]"; ?> </font></td> <td align="center" ><font color="#003333" size="2" face="Tahoma"> <?=$row["Student_id"]?> </font></td> <td height="18" align="center" > <div align="left"><font color="#990099" size="2" face="Tahoma"> <a href="StdProbDetail.php?Student_id=<?=$row["Student_id"]?>" title="Click to see Detail" class="d"> <?=$row["First_name"]?> <?=$row["Name"]?> <?=$row["Lastname"]?> </a> </font></div> </td> <td > <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob1='การเรียน' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob2='เศรษฐกิจ' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob3='สุขภาพ' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> <td width="25%"><div align="center"> <font size="2" face="Tahoma"> <?php $Student_id = $row[Student_id]; $sql1 = "Select * From advice_problem_tb Where Student_id='$Student_id' And Prob4='ส่วนตัว' "; $result1 = mysql_query($sql1) or die("Error".mysql_error()); $res1 = mysql_num_rows($result1); // $Cp1 = $res1[Cp1]; If ($res1 > 0) { echo"$Cp1"; echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> "; } else { echo"";} //if (!(strcmp("$res1[Prob1]","การเรียน"))) {echo "<img src=\"../../Image/cross.gif\" width=\"9\" height=\"9\"> ";} ?> </font></div></td> </tr> </table> </div></td> </tr> <? $count=0; } $i++; } CloseDB(); ?> <tr bgcolor="#B8ECB3"> <td colspan="5" align="center"> <div align="center"><font color="#003366" size="2" face="Tahoma">ทั้งหมด</font><font color="#FFFFFF" size="2" face="Tahoma"> <? echo $num ?> <font color="#003366">หัวข้อ</font> </font> </div></td> </table> <table width="100%" border="0" cellpadding="0" cellspacing="1" bordercolor="#99CCFF"> <tr> <td align="right" bordercolor="#CCCCCC" 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 size="2" face="Tahoma"><strong> </strong><font color="#000000">หน้า</font></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>
<p> </p> </html> <?php } else { echo"<body bgcolor=\"#CCCCCC\">"; echo"<meta http-equiv=\"refresh\" content=\"3;URL=../logout.php\" target=\"mainFrame\">\n"; echo"<center>"; echo"<br><br><br><b><font face=\"Tahoma\" size=\"4\" color=\"#FF0000\">Please Login</font> </b><br>"; echo"<br><br><font face=\"Tahoma\" size=\"10\" color=\"#000000\"> ERROR 404 PERMISION DENY</font><br>"; echo"<br><font face=\"Tahoma\" size=\"4\" color=\"#000000\"> คุณไม่มีสิทธ์ใช้งาน</font>"; echo"</center>"; echo"</body>"; } ?>
|