"; $emails = $_POST['emails']; print '

Apple Valid Email Checker
Gz SnIPeR

'; if (!empty($emails)) { $emails = explode("\r\n", $emails); $yes = 0; $not = 0; $inv = 0; $count = 1; print "

Checking ".count($emails)." emails ....

"; foreach ( $emails as $email ) { $email = trim($email); print $count .". Checking ".$email." ..... "; $count++; if(filter_var($email, FILTER_VALIDATE_EMAIL)){ $_CheckAction = @file_get_contents('https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/validateAppleID?appleid='.$email.'') or Die('Server Error - Can\'t Check '); if(!preg_match("/111/",$_CheckAction)) { print "Yes
"; $yes++; $vaild_yes .=$email."\n"; } else { print "NO
"; $not++; $vaild_no .=$email."\n"; } } else { print "Invaild email
"; $inv++; $invaild .=$email."\n"; } } print '

Apple emails ('.$yes.')

Not Apple emails ('.$not.')

Invalid emails ('.$inv.')

' ; } ?>

 

Copyright ©  2013

Gz SnIPeR