<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-874" /> <title>frmUser_HW2012</title> </head> <body> <?php //functionตรวจสอบ //**********************************************************************************************// function get_color($err_no) { // <-- 1.functionตรวจสอบสีตัวอักษร if ($err_no > 0) return "#CC0000"; //สีแดง else return "#33FF00"; //สีเขียว } function display_error_msg($err_no) { // <-- //2.functionตรวจสอบว่าจะแสดงข้อความใดเมื่อมีการsubmit $err_msg = " <font color='".get_color($err_no)."'>"; switch ($err_no) { case 0: $err_msg .= "correct"; break; case 1 : $err_msg .= "empty input"; break; case 2 : $err_msg .= "invalid name/surname"; break; case 3: $err_msg .= "invalid input"; break; } $err_msg .= "</font>"; //<-- 1 //$err_msg = $err_msg & "</font>"; //<-- 2 เหมือนกันกับบรรทัดบน .= คือการเชื่อม string return $err_msg; } //**********************************************************************************************// function empty_input($input) { //3.checking for empty input <-- ตรวจสอบว่ามีค่าหรือว่างไว้ if (trim($input)=="") // <-- ตรวจสอบว่ามีการเว้นวรรคหรือไม่ คือ trim = เป็น function ตัดวรรค return true; else return false; } //**********************************************************************************************// function checking_name($input_name) { // 4.<-- checking for empty input and valid name <-- ตรวจสอบว่ามีการ Inputค่าตัวอักษรหรือไม่/Inputค่าตัวอักษรผิดๆ if (empty_input($input_name)) echo display_error_msg(1); else { if (eregi( "^[a-zก-๙]*$", $input_name)) echo display_error_msg(0); else echo display_error_msg(2); } } //**********************************************************************************************// function checking_age($input_age) { //5. <-- checking for valid age <-- ตรวจสอบว่ามีการ Inputค่าตัวเลขหรือไม่/Inputค่าตัวเลขผิดๆ if (empty_input($input_age)) { echo display_error_msg(1); } else { //เป็นตัวเลข? if (is_numeric($input_age)) { //6. <-- ตรวจสอบว่าเป็นตัวเลขหรือไม่ if ($user_age >= 0) //7. สร้างเงื่อนไขให้เลขอยู่ระหว่าง 0 ถึง 100 { echo display_error_msg(0); } elseif($user_age <= 100) { echo display_error_msg(0); } else echo display_error_msg(3); } else echo display_error_msg(3); } } //--------------------------------------------------------------------------------------------------------------------// echo"<form name='frmUser' method='post' action=$php_self>"; //show form เพื่อตรวจสอบชื่อ สกุล อายุ echo"ชื่อ : <input type='text' name='user_name' size='40'>"; //สร้างช่องกรอก ชื่อ if (isset($_POST["user_name"])) checking_name($_POST["user_name"]); //ตรวจสอบว่ามี user_nameอยู่จริงหรือไม่ *หมายเหตุ จะมีเมื่อมีการsubmitเท่านั้น //--------------------------------------------------------------------------------------------------------------------// echo"<br />"; echo"สกุล : <input type='text' name='user_lname' size=40>"; //ตรวจสอบว่ามี user_lnameอยู่จริงหรือไม่ *หมายเหตุ จะมีเมื่อมีการsubmitเท่านั้น if (isset($_POST["user_lname"])) checking_name($_POST["user_lname"]); //สร้างช่องกรอก สกุล //--------------------------------------------------------------------------------------------------------------------// echo"<br />"; echo"อายุ : <input type='text' name='user_age' size='2' maxlength='3'>"; //ตรวจสอบว่ามี user_ageอยู่จริงหรือไม่ *หมายเหตุ จะมีเมื่อมีการsubmitเท่านั้น if (isset($_POST["user_age"])) checking_age($_POST["user_age"]); //สร้างช่องกรอก อายุ //--------------------------------------------------------------------------------------------------------------------// echo"<br />"; echo"<input type=submit value=ตรวจสอบ>"; //สร้างปุ่มตรวจสอบ echo"</form>"; ?> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง