/ Published in: PHP
To check if number is valid Indian Mobile Number.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// PHP Function below can be used to check // if a given number is valid Indian mobile number or not. function is_mobile($number) { $result = true; // unless prooved otherwise, mobile number is valid. // Strip out non digits. // first digit should be greater then 6. // Should be of exactl ten digits. return $result; }
URL: http://dak9.com