D3F4ULT8778

checker

Jul 4th, 2020
47,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3.  
  4. ?>
  5. Upload is <b><color>WORKING</color></b><br>
  6. Check Mailling ..<br>
  7. <form method="post">
  8. <input type="text" name="email" value="<?php print $_POST['email']?>"required >
  9. <input type="submit" value="Send test >>">
  10. </form>
  11. <br>
  12. <?php
  13. if (!empty($_POST['email'])){
  14. $xx = rand();
  15. mail($_POST['email'],"Result Report Test - ".$xx,"WORKING !");
  16. print "<b>send an report to [".$_POST['email']."] - $xx</b>";
  17. }
  18. ?>
Add Comment
Please, Sign In to add comment