hi there
ok this is real simple - i have a PHP script that createsa a file called new.html in a directory on my server using this code:
$fe = fopen("login.html", "w");
fwrite($fe,
"<head><title>new</title></head><body>blah, blah, blah</body>");
fclose($fe);
can anyone tell me how i can make change the code so that it overwrites this file each time it's generated? thanks!