Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: works for GET, not POST

From: rebol:techscribe at: 30-Jan-2001 13:04

Hi Ryan, I don't understand why you are having problems (haven't followed this thread). I am routinely using the following function with POST under an Apache Webserver on Linux using REBOL/Core current stable version and it works without complaints every time: retrieve-user-data: func [] [ return decode-cgi either system/options/cgi/request-method = "POST" [ input ][ either system/options/cgi/query-string [ system/options/cgi/query-string ][ "" ] ] ] Which problems are you having? Take Care, Elan Ryan C. Christiansen wrote: