say guys.. i have a code that inputs text to a text file:
Now, how do I have a command that deletes this text file, or at least flushes/erases the text back to NULL?PHP Code:// write to file
$textfile = fopen ("C:/instructions.txt", "w+");
fwrite($textfile, $fp);
fclose ($textfile);
echo "<P><B>Your instructions have been updated into the database!</B></P>";




Bookmarks