In an input field we can verify the email address entered is in correct format or not using PHP eregi function. This is a part of php form validation we do for other entries to check proper formatted data is entered by the user or not. You can enter any email address and check it is a valid address or not. Please not that we are not checking the validation or existence of the URL or the service provider. We are only checking / validating the format of the email address. This code can be used as a part of the other entered data validation used. You can read the php form validation by visiting the tutorial here. Here is the demo of the email validation. Test this validation by entering any formatted email address. You will get a message based on the result of validation.
How to receive email address
Visitors enter their email address in a textbox kept inside a web form.
From a web form we will get email address either by GET or POST method to the processing script. For ready reference here are two ways to get the email address from a web form.
$email=$_GET['email']; // GET method
$email=$_POST['email']; // POST method
Minimum requirement of any email address is presence of @ and one dot ( . ) . Here we can check for the presence of these two conditions and clear or validated the variable in the presence of these two chars. Note that many complex conditions were this checking will fail but to maintain simplicity this can be used.
if (!stristr($em,"@") OR !stristr($em,".")) {
$msg="Your email address is not correct <BR>";
$status= "NOTOK";
} else {
echo " Your email address is OK ";
}
worked great for me.. I love the fact that the page I was working on stayed on screen, and script showed where change needed to be made. Awesome
Is there a way to make sure people do not enter www. in front of their email, it happens often.
John S
17-04-2019
Hello,
eregi() is deprecated as of PHP 5.3
Thanks.
✖
We use cookies to improve your browsing experience. . Learn more