>
> I don't know how to do that... sorry
You can get any web server request in a CGI reading it from the
standard input and then placing it in a file, for example.
PUBLIC SUB Main()
Dim Buf AS STRING
DO UNTIL Eof()
READ Buf
' PRINT BUF in any file
LOOP
END