function checkTextField(field) { if (field.value == '') { alert("Field is empty"); } }
<!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> <script type="text/javascript"> function checkTextField() { if(document.getElementById('student_email').value == "") { alert("Please fill in your E-mail."); document.getElementById('student_email').focus(); return false; } else if(!document.getElementById('student_email').value.match(/^\w[\w|\.|\-]+@\w[\w|\.|\-]+\.[a-zA-Z]{2,4}$/)){ alert("Please enter a valid E-mail address."); document.getElementById('student_email').focus(); return false; } else { return true; } } </script> </head> <body> <?PHP #เช็คอีเมล์ function checkmymail($mailadresse){ $email_flag = preg_match("!^\w[\w|\.|\-]+@\w[\w|\.|\-]+\.[a-zA-Z]{2,4}$!",$mailadresse); return $email_flag; } if($_POST){ $email = $_POST['student_email']; if(!checkmymail($email)){ #เช็คอีเมล์ว่าถูกต้องตามรูปแบบหรือไม่ echo 'Email ไม่ถูกต้อง'; } else { echo 'Email ถูกต้อง'; } } ?> <form class="ajax_form" name="contactForm" method="post" action="" onSubmit="return checkTextField();"> <label for="email">E-mail : </label> <input type="text" name="student_email" id="student_email" /> <input type="submit" name="button" id="button" value="Submit" /> </form> </body> </html>
<?PHP #เช็คอีเมล์ function checkmymail($mailadresse){ $email_flag = preg_match("!^\w[\w|\.|\-]+@\w[\w|\.|\-]+\.[a-zA-Z]{2,4}$!",$mailadresse); return $email_flag; } $sql_opject = mysql_query("SELECT * FROM ....................") $result = mysql_fetch_assoc($sql_opject); $email = $result['student_email']; if(!checkmymail($email)){ #เช็คอีเมล์ว่าถูกต้องตามรูปแบบหรือไม่ echo 'Email ไม่ถูกต้อง'; } else { echo 'Email ถูกต้อง'; } } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง