Create and delete files using PHP

"fopen" binds a named resource, specified filename by , to a stream in various mode (read, write, append etc.,), where "fwrite" writes the contents of string to the file stream pointed to by handle. To close file pointed to by handle "fclose" required. 
 
 
http://www.geekboots.com/php/create-delete-file 

Click here for example of create and delete files using PHP
 

Comments