/ Published in: PHP
Full email validation with regex.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$regex = "([a-z0-9_.-]+)". # name "@". # at "([a-z0-9.-]+){2,255}". # domain & possibly subdomains ".". # period "([a-z]+){2,10}"; # domain extension
URL: tricksbycinger.blogspot.com