-
Fake logins..final help
I have created a php page for mailing the details from yahoo and have saved it with an extension of .php
This is the Php page that i have created[QUOTE]<html>
<body>
<?php
echo(date("l dS \of F Y h:i:s A") . "<br />");
<?php
echo $_SERVER['REMOTE_ADDR'];
?>
<?php
echo $_SERVER['HTTP_USER_AGENT'];
?>
Yahoo! ID: <?php echo $_POST["Yahoo! ID"]; ?><br />
Password:<?php echo $_POST["Password"]; ?><br />
</body>
</html>[/QUOTE]
Now in the main login page,i have referred this php page under <Form Action>
after i clik on Sign in...rather than moving on..it opens this Php page and shows the above code
Now cud anyone tell what are the things that have to be done to out this php into work
-
[LIST=*][*]You didn't close the top opening PHP tag.
[*]Your server may not have PHP installed.[/LIST]
-
Also, sosme, all your page is doing is taking the username and password (plus some other info) and echoing it back to the user. You should have the user/pass information be written to a file, or sent to you via email.
-
redirect info
I am having the same problem. how do I direct the user and pass to be written on the server or emailed to me ? having a hell of time figuring this out.....please help