hello, I am creating a file this way:
$newfile= $adres;
$fp = fopen ("$newfile", "w+");
then sending something to the file defined by the address using a form. like this:
echo('<FORM ACTION="'); print $newfile; echo ('" METHOD=POST name="oykuyaz">');
so on...
I use hidden as type and send. When ý go to the file I see that all the variables I defined are OK. bu t when I close that bros,wser window and I write the address of the file to the browser, I see that all the variables are reset. I want the variables to keep their values forever. this is because I am using this script to load some text to the web pages. Do you think my way of creating a new file is wrong. or what can I do to handle this problem? I also want my "new" files to be edittable but I see that I cannot edit them by using notepad. I am expecting your help...