[EMAIL PROTECTED] wrote:
> 
> My REBOL cgi doesn't work

[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).

- Chris

Reply via email to