<html> <head> <title>เพิ่มข้อมูลนักศึกษา</title> <center> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script language="javascript"> function check() { if(document.checkForm.username.value=="") { alert("กรุณากรอกชื่อเข้าสู่ระบบด้วยค่ะ") ; document.checkForm.username.focus() ; return false ; } else if(document.checkForm.password.value=="") { alert("กรุณากรอกรหัสผ่านด้วยค่ะ") ; document.checkForm.password.focus() ; return false ; } else if(document.checkForm.password1.value=="") { alert("กรุณายืนยันรหัสผ่านอีกครั้ง") ; document.checkForm.password1.focus() ; return false ; } else if(document.checkForm.password.value != document.checkForm.password1.value) { alert("รหัสผ่านทั้งสองไม่ตรงกัน กรุณายืนยันรหัสผ่านให้ถูกต้องด้วยค่ะ") ; document.checkForm.password1.focus() ; return false ; } else if(document.checkForm.name.value=="") { alert("กรุณากรอกชื่อด้วยค่ะ") ; document.checkForm.name.focus() ; return false ; } else if(document.checkForm.surname.value=="") { alert("กรุณากรอกนามสกุลด้วยค่ะ") ; document.checkForm.surname.focus() ; return false ; } else if(document.checkForm.sex.value=="") { alert("กรุณากรอกเพศด้วยค่ะ") ; document.checkForm.sex.focus() ; return false ; } else if(document.checkForm.branch.value=="") { alert("กรุณากรอกสาขาด้วยค่ะ") ; document.checkForm.branch.focus() ; return false ; } else if(document.checkForm.class_year.value=="") { alert("กรุณากรอกชั้นปีด้วยค่ะ") ; document.checkForm.class_year.focus() ; return false ; } else if(document.checkForm.iden.value=="") { alert("กรุณากรอกเลขเลขที่บัตรประชาชนด้วยค่ะ") ; document.checkForm.iden.focus() ; return false ; } else if(document.checkForm.address.value=="") { alert("กรุณากรอกที่อยู่ด้วยค่ะ") ; document.checkForm.address.focus() ; return false ; } else if(document.checkForm.telephone.value=="") { alert("กรุณากรอกเบอร์โทรศัพท์ด้วยค่ะ") ; document.checkForm.telephone.focus() ; return false ; } else if(document.checkForm.email.value=="") { alert("กรุณากรอกอีเมล์ด้วยค่ะ") ; document.checkForm.email.focus() ; return false ; } else return true ; } </script> </head> <body> <h2>เพิ่มข้อมูลนักศึกษา</h2> <table align="center"> <form name="checkForm" action="student_add.php" method="post" onSubmit="return check()"> <tr><td>ชื่อเข้าสู่ระบบ :</td><td><input type="text" name="username" id="username"></td></tr> <tr><td>รหัสผ่าน :</td><td><input type="text" name="password" id="password"></td></tr> <tr><td>ยืนยันรหัสผ่าน :</td><td><input type="text" name="password1" id="password1"></td></tr> <tr><td>ชื่อ :</td><td><input type="text" name="name" id="name"></td></tr> <tr><td>นามสกุล :</td><td><input type="text" name="surname" id="surname"></td></tr> <tr><td>เพศ :</td><td><input type="text" name="sex" id="sex"></td></tr> <tr><td>สาขา :</td><td><input type="text" name="branch" id="branch"></td></tr> <tr><td>ชั้นปี :</td><td><input type="text" name="class_year" id="class_year"></td></tr> <tr><td>เลขที่บัตรประชาชน :</td><td><input type="text" name="iden" id="iden"></td></tr> <tr><td>ที่อยู่ :</td><td><input type="text" name="address" id="address"></td></tr> <tr><td>เบอร์โทรศัพท์ :</td><td><input type="text" name="telephone" id="telephone"></td></tr> <tr><td>อีเมล :</td><td><input type="text" name="email" id="email"></td></tr> <tr><td colspan="2" align="center"><input type ="submit" value ="ส่ง"><input type ="Reset" value ="ยกเลิก"></td></tr> <input name="ok" type="hidden" id="ok" value="ok_pass"> </form> </table> </body> </html>
<script type="text/javascript"> $("form").submit(function(e) { var RegNum1 = /[0-9]{13}/; var RegNum2 = /[0-9]{3,}/; var RegNum3 = /[0-9]{1,3}/; var RegText1 = /[a-zA-Z]/; var RegText2 = /[ก-ฮ | ก-๙]/; var RegText3 = /[a-zA-Zก-๙]/; var RegText4 = //; if ( !RegNum1.test($("input").val() ) { alert("กรุณากรอกแต่ตัวเลขให้ครับ 13 หลัก"); return false; } if ( !RegNum2.test($("input").val() ) { alert("กรุณากรอกแต่ตัวเลขอย่างน้อย 3 ตัวขึ้นไป"); return false; } if ( !RegNum3.test($("input").val() ) { alert("กรุณากรอกแต่ตัวเลข แต่ห้ามซ้ำกันเกิน 3 ตัว"); return false; } else if ( !RegText1.test($("input").val() ) { alert("กรุณากรอกแต่ภาษาอังกฤษ"); return false; } else if ( !RegText2.test($("input").val() ) { alert("กรุณากรอกแต่ภาษาภาษาไทย"); return false; } else if ( !RegText3.test($("input").val() ) { alert("กรุณากรอกแต่ภาษาภาษาไทย และภาษาอังกฤษ"); return false; } else if ( !RegText4.test($("input").val() ) { alert("กรุณาเคาะ Spadbar หรือ ค่าว่าง"); return false; } else { alert("OK"); return true; } }); </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง