Validation

  

Validation

by Craig Mayhew



PHP email validation using regex


I keep seeing PHP where the programmer has written a regular expression to validate an email address.

Don't do that! Use the filter_var() function that php comes with out of the box.



<?php
$emailAddress =…

PHP   Validation  



© 2005-2024 Craig Mayhew