<? include "connect.php"; ?> <!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> </head> <body> <form method="get" action="test.php"> ชั้น ป.<select name="class"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> <option>6</option> </select> <input type="submit" /> </form> <table border="1"> <tr> <td>รหัสนักเรียน</td> <td>ชื่อนักเรียน</td> <td>นามสกุลนักเรียน</td> <td>ชั้น</td> <td>ห้อง</td> </tr> <? $class=$_GET['class']; $sql="select * from student where std_class like '$class'"; $data=mysql_db_query($dbname,$sql)or die(mysql_error()); while($row=mysql_fetch_array($data)){?> <tr> <td><?=$row['std_id'];?></td> <td><?=$row['std_name'];?></td> <td><?=$row['std_lname'];?></td> <td><?=$row['std_class'];?></td> <td><?=$row['std_room'];?></td> </tr> <? }?> <tr> </tr> </table> </body> </html>
<select name="class" onChange="this.form.submit()">
<option <?php if($_GET['class'] == 1){ echo 'selected'; } ?>>1</option> <option <?php if($_GET['class'] == 2){ echo 'selected'; } ?>>2</option> <option <?php if($_GET['class'] == 3){ echo 'selected'; } ?>>3</option> <option <?php if($_GET['class'] == 4){ echo 'selected'; } ?>>4</option> <option <?php if($_GET['class'] == 5){ echo 'selected'; } ?>>5</option> <option <?php if($_GET['class'] == 6){ echo 'selected'; } ?>>6</option>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง