now i have this script:
<?
addslashes ($HTTP_POST_VARS['edit']);
$change = $HTTP_POST_VARS['edit'];
echo "You entered:<BR><BR> $change" ;
$fd = fopen ($file, "r");
fclose ($fd);
?>
it works. but how do i store the information
(coming from a form) in the $file ?