Thread Weitergehende Email-Prüfung (8 answers)
Opened by Yogi62 at 2010-10-15 10:22

Yogi62
 2010-10-15 10:22
#141919 #141919
User since
2010-10-15
14 Artikel
BenutzerIn
[Homepage] [default_avatar]
Hallo,
ich frische meine 10 Jahre alten Perlkenntisse auf und mein Kamelbuch ist auch von 1997. Trotzdem brauche ich dringend einen Tipp:
Geht das mittlerweile auch in PerL:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
echo "Test! $_GET['mail']";
if(isset($_GET['mail']) && !empty($_GET['mail']))
{
$addr = strip_tags($_GET['mail']);
list($user, $host) = explode("@", $addr);
if (checkdnsrr($host, "MX") or checkdnsrr($host, "A"))
{
echo '1';
}
else
{
echo '0';

}
}
else
{
echo '0';
}
?>


Liebe Grüße und Dank im voraus!
Barbara

mod-edit pq: code-tags hinzugefügt
Last edited: 2010-10-15 10:25:26 +0200 (CEST)

View full thread Weitergehende Email-Prüfung