<?php session_start(); include("include/phpconnect.php"); ?> <?php if (!($_SESSION['admin_loged_in'])) { echo "<script language=\"JavaScript\" type=\"text/javascript\">window.location='index.php';</script>"; } ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>ยินดีต้อนรับ</title> <script language="javascript"> function check(){ if(document.form1.id.value==""){ alert("ระบุรหัสประจำตัวนักเรียน"); document.form1.id.focus(); return false; }else if(document.form1.name.value==""){ alert("ระบุชื่อนักเรียน"); document.form1.name.focus(); return false; }else{ return true; }} </script> <style type="text/css"> <!-- body { background-color: #000000; } .style1 {color: #CCCCCC} .style2 {color: #Fccc66} --> </style></head> <body> <form action="search.php" method="get" name="form2"> <font color="#FF3366">ระดับชั้นที่ <input name="keyword" value="<?php echo $_GET[keyword]; ?>" type="text"/> ห้องที่ <input name="keyword2" value="<?php echo $_GET[keyword2]; ?>" type="text"/> <input name="submit" type="submit" value="ค้นหา"/> </font></form><font color="#FF0000"> <?php if($_GET[keyword] != ""){ $keyword=$_GET[keyword]; $sql="select*from student where (student_class like '%".$_GET[keyword]."%') order by student_class asc"; $result=mysql_query($sql)or die(mysql_error());//ประมวลผลคำสั่งsql ; ?> <?php if($_GET[keyword2] != ""){ $keyword2=$_GET[keyword2]; $sql="select*from student where (student_room like '%".$_GET[keyword2]."%') order by student_room asc"; $result=mysql_query($sql)or die(mysql_error());//ประมวลผลคำสั่งsql $num=mysql_num_rows($result);//เชคจำนวนเรคคอร์ด echo"จำนวนทั้งหมด".$num."คน"; ?> </div></font> <table width="685" height="144" border="1" align="center" bordercolor="#FF0000"> <tr> <td width="60" height="76"><div align="center" class="style1">เลขที่</div></td> <td width="100"><div align="center" class="style1">รหัสประจำตัว</div></td> <td width="267"><div align="center" class="style1">ชื่อ-สกุล</div></td> <td width="182"><div align="center" class="style1">รหัสบัตรประชาชน</div></td> <td width="70"><div align="center" class="style1">ระดับชั้น</div></td> <td width="36"><div align="center" class="style1">ห้อง</div></td> </tr> <?php $i=0; while($row=mysql_fetch_array($result)){ $i++; ?> <tr> <td height="36"><span class="style2"><?php echo $row[student_ordinal]?></span></td> <td><span class="style2"><?php echo $row[student_id]?></span></td> <td><span class="style2"><?php echo $row[student_sex].$row[student_firstname]?> <?php echo $row[student_surname]?></span></td> <td><span class="style2"><?php echo $row[student_identitycard]?></span></td> <td><span class="style2"><?php echo $row[student_class]?></span></td> <td><span class="style2"><?php echo $row[student_room]?></span></td> </tr><?php }?> </table> <?php }?> </body> </html> <?php }?>
<?php session_start(); include("include/phpconnect.php"); if (!($_SESSION['admin_loged_in'])){ echo "<script language=\"JavaScript\" type=\"text/javascript\">window.location='index.php';</script>"; exit; // อย่าลืมหยุดการทำงานด้วย ไม่งั้น ส่วน PHP มันทำงานต่อ ถึงแม้ interface จะทำงานถูกต้อง เพราะเจอคำสั่ง window.location ก่อน } $kw1=isset($_GET['keyword'])? $_GET['keyword'] : ''; $kw2=isset($_GET['keyword2'])? $_GET['keyword2'] : ''; if( $kw1 && $kw2 ){ // ถ้าไม่มี condition ไม่ต้องแสดงรายการ // กำหนด where clause $where="where student_class = '$kw1' and student_room = '$kw2' "; // ไม่ต้องใช้ like เพราะเป็น อักษรเดียว $order = ' order by student_class, student_room '; $result=mysql_query($sql='select * from student '. $where . $order ) or die( $sql ."<br>".mysql_error());//ประมวลผลคำสั่งsql $num=mysql_num_rows($result);//เชคจำนวนเรคคอร์ด }else $num=0; ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>ยินดีต้อนรับ</title> <script language="javascript"> function check(){ if( document.form1.id.value==""){ alert("ระบุรหัสประจำตัวนักเรียน"); document.form1.id.focus(); return false; }else if(document.form1.name.value==""){ alert("ระบุชื่อนักเรียน"); document.form1.name.focus(); return false; }else{ return true; } } </script> <style> body { background-color: #000000;} .style1 {color: #CCCCCC} .style2 {color: #Fccc66} </style> </head> <body> <form action="search.php" method="get" name="form2"> <font color="#FF3366"> ระดับชั้นที่ <input name="keyword" value="<?=$kw1?>" type="text"/> ห้องที่ <input name="keyword2" value="<?=$kw2?>" type="text"/> <input name="submit" type="submit" value="ค้นหา"/> </font> </form> <?php if( $num): ?> <font color="#FF0000">จำนวนทั้งหมด<?=$num?> คน</font> <table width="685" height="144" border="1" align="center" bordercolor="#FF0000"> <tr> <td width="60" height="76"><div align="center" class="style1">เลขที่</div></td> <td width="100"><div align="center" class="style1">รหัสประจำตัว</div></td> <td width="267"><div align="center" class="style1">ชื่อ-สกุล</div></td> <td width="182"><div align="center" class="style1">รหัสบัตรประชาชน</div></td> <td width="70"><div align="center" class="style1">ระดับชั้น</div></td> <td width="36"><div align="center" class="style1">ห้อง</div></td> </tr> <?php $i=0; while( $row=mysql_fetch_assoc($result)): $i++; ?> <tr> <td height="36"><span class="style2"><?=$row['student_ordinal']?></span></td> <td><span class="style2"><?=$row['student_id']?></span></td> <td><span class="style2"><?=$row['student_sex'].$row['student_firstname'].' '.$row['student_surname']?></span></td> <td><span class="style2"><?=$row['student_identitycard']?></span></td> <td><span class="style2"><?=$row['student_class']?></span></td> <td><span class="style2"><?=$row['student_room']?></span></td> </tr> <?php endwhile; ?> </table> <?php endif; ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง