Geez. I just finished reading about the difference between the GET and
POST method the day before in a CGI tutorial. Thanks for reminding me. I'm
still learning.
-Ryan
> [snip]
> > <FORM METHOD=POST ACTION="/cgi-bin/cgiemailer.r">
>
> [snip]
> > send [EMAIL PROTECTED] decode-cgi system/options/cgi/query-string
>
> AFAIK, system/options/cgi/query-string is only set with the 'get'
> method. With 'post', you need to do something like:
>
> read-io system/ports/input data: make string! 2000 2000
> send [EMAIL PROTECTED] decode-cgi data
>
> Its all in the docs (how to).