[REBOL] Post vs Get
From: office:ky-bible at: 8-Jul-2001 19:38
I'm new to Rebol, but here is a script that works with the html METHOD=GET
method, how should I change it to accept data from a METHOD=POST ?
My reason for changing is the size limit placed upon the data by the GET
method.
/john
set-net [[john--autx--net] MAIL.autx.net]
cgi: make object! decode-cgi system/options/cgi/query-string
write %output.txt reduce [
cgi/name "| "
cgi/ssn "|"
cgi/address "| "
cgi/city "| "
cgi/st "| "
cgi/zip "| "
cgi/phone "| "
cgi/email "| "
]