[Gambas-user] Use of Request.Files in gb.web

Daniel Campos dcamposf at ...626...
Fri Sep 14 16:56:20 CEST 2007


>
> 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




More information about the User mailing list