Files
pannello/jquery/jquery-validation-1.9.0/demo/milk/emails.php
T
2015-10-08 11:00:52 +02:00

10 lines
324 B
PHP

<?php
$request = trim(strtolower($_REQUEST['email']));
$emails = array('[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]');
$valid = 'true';
foreach($emails as $email) {
if( strtolower($email) == $request )
$valid = '"Thats already taken."';
}
echo $valid;
?>