if (filter_var($email, FILTER_VALIDATE_EMAIL)) echo "Valid email address"; else echo "Invalid email address";
The methods above only check if the text looks like an email. They do not check if the email address actually exists. To take validation a step further, you can check if the domain name (the part after the @ ) is capable of receiving emails. validate email address php
How to Validate an Email Address in PHP: A Comprehensive Guide FILTER_VALIDATE_EMAIL)) echo "Valid email address"
PHP provides a built-in filter function called filter_var() that can be used to validate email addresses. Here is an example: else echo "Invalid email address"
?>