Guest User

Untitled

a guest
Jan 27th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2.  
  3. $username = $_GET["username"];
  4. $pass = $_GET["pass"];
  5.  
  6. $file=fopen($username,"w");
  7. fwrite($file, $username);
  8. fwrite($file, $pass);
  9.  
  10. ?>
Add Comment
Please, Sign In to add comment