<!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>Untitled Document</title> <style type="text/css"> <!-- a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; } body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> </head> <body> <form action="Scode.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <table width="83%" height="384" border="1" align="center" cellspacing="0" bordercolor="#CCCCCC"> <tr> <td height="27" align="center" bgcolor="#FFFF99"><strong><a href="student_go.php">[รายชื่อนักศึกษาเข้างานเข้าร่วม</a><a href="#">กิจกรรม</a><a href="student_go.php">]</a></strong></td> <td align="center" bgcolor="#FFFF99"><strong><a href="status_notgo.php">[รายชื่อนักศึกษาเข้างานไม่เข้าร่วมกิจกรรม]</a></strong></td> <td align="center" bgcolor="#FFFF99"><strong><a href="status_no_add.php">[รายชื่อนักศึกษาที่ยังไม่ลงทะเบียน]</a></strong></td> </tr> <tr> <td height="355" colspan="3" align="center" valign="top"><p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> <input name="Scode" type="text" id="Scode" size="30" /> <input type="submit" name="button" id="button" value="ลงทะเบียน" /> </p></td> </tr> </table> </form> </body> </html>
<? $Scode =$_POST['Scode']; ?> <!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>Untitled Document</title> </head> <body> <? include"config.in.php"; $sql="select * from student where Scode='$Scode' AND Status_id=0"; $query=mysql_query($sql); if($query){ echo "ไม่พบข้อมูล หรือ\nลงทะเบียนไปแล้ว"; echo "<meta http-equiv='refresh' content='0;url=index.php>"; //refresh แล้วecho แล้วลิ้งไปหน้าตามที่กำหนด }else{ echo "<meta http-equiv='refresh' content='1;url=form_detail.php'?Scode='$Scode'>"; } ?> </body> </html>
<!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>Untitled Document</title> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> </head> <body> <table width="65%" height="459" border="1" align="center" cellspacing="1" bordercolor="#3399FF"> <tr> <td height="35" bgcolor="#0099FF"></td> </tr> <tr> <td height="297" align="center" valign="top"><form action="edit_status.php" method="post" enctype="multipart/form-data" name="form1" target="_parent" id="form1"> <p> <label></label> <? include"config.in.php"; $sql="select * from student where Scode='$Scode' AND Status_id=0"; $query=mysql_query($sql); $numrows=mysql_num_rows($query); $rs=mysql_fetch_array($query); ?> </p> <table width="57%" border="1" align="center" cellspacing="1"> <tr> <td colspan="3" bgcolor="#FFFF99"><div align="center"><strong>รายละเอียดนักศึกษา</strong> <?=$rs['ID']?> </div></td> </tr> <tr> <td width="24%" align="right" bgcolor="#FFFFCC"><strong>รหัสนักศึกษา</strong></td> <td width="2%" bgcolor="#FFFFCC"> </td> <td width="74%" bgcolor="#FFFFCC"><?=$rs['Scode']?></td> </tr> <tr> <td align="right" bgcolor="#FFFFCC"><strong>ชื่อ</strong></td> <td bgcolor="#FFFFCC"> </td> <td bgcolor="#FFFFCC"><?=$rs['Fname']?> <?=$rs['Lname']?></td> </tr> <tr> <td align="right" bgcolor="#FFFFCC"><strong>หมู่เรียน</strong> </td> <td bgcolor="#FFFFCC"> </td> <td bgcolor="#FFFFCC"><?=$rs['Year']?></td> </tr> </table> <p> </p> <table width="166" height="85" border="0"> <tr> <td><label> <? $sql="select * from status where Status_id > 0 "; $query=mysql_query($sql); $numrows=mysql_num_rows($query); for($a=1;$a<=$numrows;$a++){ $rs2=mysql_fetch_array($query); ?> <input name="Stutus_id" type="radio" class="style1" id="Teacherid" value==<?=$rs2['Status_id'];?> /> <span class="style1"> <?=$rs2['Status'];?> </span></label> <br /> <label></label> <? } ?></td> </tr> <tr> <td><input type="submit" name="button" id="button" value=" เลือก " /></td> </tr> </table> <p> <label></label> <label></label> </p> <p> <label></label> <br /> <label></label> <br /> </p> </form> <p> </p> <p> </p></td> </tr> </table> </body> </html>
<? $Status_id = $_POST['Status_id']; ?> <!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>Untitled Document</title> </head> <body> <? include "config.in.php"; $sql="UPDATE student SET Status_id='$Status_id' WHERE ID ='$ID'"; $query=mysql_query($sql); if($query){ ?> <script> alert("บันทึกข้อมูลเรียบร้อยแล้ว\nขอบคุณที่ให้ความร่วมมือ"); </script> <? echo "<meta http-equiv='refresh'content='0;url=index.php>"; //refresh แล้วecho แล้วลิ้งไปหน้าตามที่กำหนด }else{ ?> <script> alert("ไม่สามารถบันทึกข้อมูลได้"); </script> <? echo "<meta http-equiv='refresh'content='1;url=index.php>"; } ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง