Advertisement
shutdown57

Mailist filter from empass

Jun 20th, 2017
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Mailist Filter From EmPass</title>
  5. <meta charset="utf-8">
  6. <meta name="author" content="shutdown57">
  7. </head>
  8. <body>
  9. <!--
  10. DEVSEX NGENTOD
  11. -->
  12. <center>
  13. <h1>Mailist Filter</h1>
  14. <?php
  15. if(isset($_POST['submitx']))
  16. {
  17. $pisah=explode("\r\n",$_POST['empass']);
  18. foreach($pisah as $pepek){
  19.  
  20. $mail=explode(":",$pepek);
  21. @$email.=$mail[0]."\n";
  22. }
  23. echo "Result : <a href='?ngewe'>Kembali Kehatimu</a><br>";
  24. echo "<textarea style='width:500px;height:400px;'>";
  25. echo $email;
  26. echo "</textarea>";
  27. }else{
  28. ?>
  29. <form method="POST">
  30.     <textarea name="empass" style="width:500px;height:400px;"></textarea><br>
  31.     <input type="submit" name="submitx" value="Ngewe Kuy!!">
  32. </form>
  33. <?php
  34. }
  35. ?>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement