php verification email format

WBOY
Release: 2016-07-25 08:45:14
Original
1325 people have browsed it
  1. if(isset($_POST['email'])){
  2. $email = $_POST['email'];
  3. if(filter_var($email, FILTER_VALIDATE_EMAIL)){
  4. echo '

    This is a valid email.

    ';

  5. }else{
  6. echo '

    This is an invalid email.

    ';
  7. }
  8. }
  9. ?>
  10. Email:
复制代码

php


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!