|
|
|
การ เซ็ค email box ทำไงคับ คือ ผมอยากทราบว่า ในการ เซ็ค textbox ที่เป็น email มันเซ็คยังไงคับ |
|
|
|
|
|
|
|
//สร้างฟังก์ชัน
Code (PHP)
<?php
function isValidEmail($email){
return eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email) ;
}
?>
//การใช้งาน
Code (PHP)
<?php
if(isValidEmail($email)){
echo "$email เป็นอีเมลล์ที่ถูกต้อง";
}else{
echo "$email เป็นอีเมลล์ไม่ที่ถูกต้อง";
}
?>
function php ด้านบนนี้ จะได้ค่า return มาเป็น boolean (จริง กับ เท็จ)
Ref : ตัวอย่าง
|
|
|
|
|
Date :
2009-11-05 14:54:13 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<script>
function check_data()
{
var format_num = /^([0-9])+$/;
var format_mail=/^([a-zA-Z0-9\_\-\.]{3,})+@([a-zA-Z0-9\-]{3,})+.+([a-zA-Z]{2,}|.+([a-zA-Z]{2,}))$/;
if (!(format_num.test(document.getElementById('num').value)))
{
alert("กรอกได้เฉพาะตัวเลข");
document.getElementById('num').focus();
return false;
}
if (!(format_mail.test(document.getElementById('email').value)))
{
alert("รูปแบบอีเมลไม่ถูก");
document.getElementById('email').focus();
return false;
}
}
</script>
ตัวเลข <input id="num"/><br />
อีเมล <input id="email"/><br />
<input type="button" value="check" onclick="return check_data()">
ref : https://www.thaicreate.com/php/forum/023014.html
|
|
|
|
|
Date :
2009-11-05 14:58:40 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|