Advertisement
KiLL3r-Dz

mail liste filter

May 11th, 2013
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <html>
  2. <head><title>Mail liste Filter </title></head>
  3. <h3>Mail liste Filter </h3>
  4. <form method=post>
  5. Change Here Like ( @hotmail , @live etc.. ) :<br />
  6. <input type="text" value="@gmail" name="option"><br /><br />
  7. <textarea name=mail cols=40 rows=20></textarea><br /><br />
  8. <input type=submit value=Extract name=goo><br />
  9. </form></html>
  10. <?php
  11.  
  12. /**
  13. * coded by OmL33T-Dz
  14. * From Algeria
  15. * Greetz To All Freind
  16. * Special : Gastro_Dz , DamaneDz
  17. */
  18.  
  19. if(isset($_POST['goo'])){
  20. echo "<hr>";
  21. $maill = $_POST['mail'];
  22. $option = $_POST['option'];
  23. preg_match_all("/(.*)$option(.*)/i",$maill,$maillist);
  24.  
  25. foreach($maillist[0] as $mail){
  26. echo $mail."<br>";
  27. // file_put_contents("mail.txt", $mail."\n", FILE_APPEND);
  28.  
  29. }
  30. // echo "done with success <a href='mail.txt'>mail.txt</a>";
  31. }
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement