is there a way to create a file through PHP?
i have edited a file using fopen etc..
Is there anyway to create a new file and then write to it?
if you call fopen like fopen("somefile.txt", "w+"); it will create the file, and return a handle to edit it.