Created
July 11, 2016 08:16
-
-
Save MikSDigital/bfbc07eec6b5580e4392bf433f7c31ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// $namepreg = '/^[a-zA-Z \'\-]+$/'; | |
$namepreg = '/^[a-zA-ZöüõäÕÄÖÜñÑĀāČčĒēĪīŠšŪūŽž \'\-]+$/'; // Latvian letters | |
$mailpreg = '/^[A-Z0-9._%-]+@[A-Z0-9][A-Z0-9.-]{0,61}[A-Z0-9]\.[A-Z]{2,6}$/i'; | |
$phonepreg = '/^[\+0-9]+$/'; | |
if (!preg_match($namepreg, htmlspecialchars($firstName))) | |
{ | |
$errorFields[] = 'firstName'; | |
} | |
if (!preg_match($namepreg, htmlspecialchars($lastName))) | |
{ | |
$errorFields[] = 'lastName'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment