Hi,
In ASP, you can write file directly on a local folder using:
Set fso = Server.CreateObject("Scripting.FileSystemObject")
path = "c:\temp\test.doc"
ForAppending = 8
' open the file
set file = fso.opentextfile(path, ForAppending, TRUE)...
I didn't find a solution to do it in PHP. Is it possible or PHP only allow to create file on the server?