help with php script?

  • Thread starter Thread starter PalmBxR
  • Start date Start date
P

PalmBxR

Guest
heres my script <?php
]
$handle = fopen("usernames.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;
?>

this is supposed to collectdata on my page when entered but it creates a document with no data...
 
Back
Top