Email Validation in PHP
Submitted by jkev on Tuesday, May 21, 2013 - 20:01.
Language
Hi Guys,
This code is an email validator. It will validate the email address that you input. If the email address is not valid, like it don’t have an @ symbol, then the script will display a message that the email is invalid.
This script is useful if you have a user registration page.
Sample code:
- <?php
- include('header.php');
- ?>
- <html>
- <body>
- <div class="container">
- <form class="form-horizontal" method="POST">
- <div class="control-group">
- <label class="control-label" for="inputEmail">Email</label>
- <div class="controls">
- <input type="text" name="email" id="inputEmail" placeholder="Email" required>
- </div>
- </div>
- <div class="control-group">
- <div class="controls">
- <button type="submit" name="submit" class="btn">Submit</button>
- </div>
- </div>
- <div class="control-group">
- <div class="controls">
- <?php
- $email=$_POST['email'];
- $pattern = "/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])(([a-z0-9-])*([a-z0-9]))+(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i";
- //Input Validations
- ?>
- <div class="alert alert-danger span2">
- <?php echo 'Invalid Email Address'; ?>
- </div>
- <?php
- }else{
- ?>
- <div class="alert alert-success span3">
- <?php echo 'This is a Valid Email Address'; ?>
- </div>
- <?php
- }
- }
- ?>
- </div>
- </div>
- </form>
- </div>
- </body>
- </html>
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 302 views