0041 | ตรวจสอบข้อมูลแบบง่ายๆ ด้วย PHP 5.2

Sunday, November 16th, 2008 Posted in PHP Coding | 4 Comments »

แบบว่านั่งหาข้อมูลไปเรื่อยๆ (จะใช้ทำ project ครับ) ก็เลยเจอไอ้นี่เข้าให้ แจ่มดีแฮะ จะได้ไม่ต้องนั่งจำ regex อยู่ ที่มา: PHP Tutorials Examples Filtering Data with PHP [PHP] IPv6 validation

Tags: , ,

0015 | PHP Email Validation

Wednesday, May 14th, 2008 Posted in PHP Coding | 2 Comments »

บทความนี้อ้างอิง + คัดลอกมาจากเว็บไซต์ต่อไปนี้ Spoono.com - Spoono - PHP Tutorials - Email Validation แบบว่ากำลังหาตัว validate email เพลินๆ ไปเจอตัวนี้มา ถูกใจครับ (ฮาๆ) เอามาลง เผื่อเก็บไว้ใช้อีก function checkEmail($email) { if (eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $email)) { return false; } list($Username, $Domain) = split("@",$email); if (getmxrr($Domain, $MXHost)) { return true; } else { if (fsockopen($Domain, 25, $errno, $errstr, 7)) { return true; } ...

Tags: , ,